mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
return a string instead
This commit is contained in:
@ -120,7 +120,7 @@ namespace osu.Game.Rulesets.Mania.Edit
|
||||
}
|
||||
}
|
||||
|
||||
public override IEnumerable<string> ConvertSelectionToString()
|
||||
=> EditorBeatmap.SelectedHitObjects.Cast<ManiaHitObject>().Select(h => $"{h.StartTime}|{h.Column}");
|
||||
public override string ConvertSelectionToString()
|
||||
=> string.Join(',', EditorBeatmap.SelectedHitObjects.Cast<ManiaHitObject>().OrderBy(h => h.StartTime).Select(h => $"{h.StartTime}|{h.Column}"));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user