1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 09:42:54 +08:00

removed [] array literal

This commit is contained in:
Givikap120 2024-07-01 20:31:23 +03:00
parent 7f57226bdb
commit 3c52296d1c

View File

@ -26,7 +26,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
protected override double DifficultyMultiplier => 1.04;
// Used to calculate acc punishment
private readonly List<double> objectStrains = [];
private readonly List<double> objectStrains = new();
public Speed(Mod[] mods)
: base(mods)