mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:18:22 +08:00
Remove redundant length check
This commit is contained in:
parent
e17cd9e964
commit
61b396f235
@ -21,8 +21,7 @@ namespace osu.Game.Rulesets.Mania.Replays
|
||||
public ManiaReplayFrame(double time, params ManiaAction[] actions)
|
||||
: base(time)
|
||||
{
|
||||
if (actions.Length > 0)
|
||||
Actions.AddRange(actions);
|
||||
Actions.AddRange(actions);
|
||||
}
|
||||
|
||||
public void ConvertFrom(LegacyReplayFrame legacyFrame, IBeatmap beatmap, ReplayFrame lastFrame = null)
|
||||
|
Loading…
Reference in New Issue
Block a user