1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:33:30 +08:00

Make hyperdash testcase easier to win again

This commit is contained in:
Dean Herbert 2017-12-01 20:13:32 +09:00
parent 273793f185
commit bf606522c1

View File

@ -18,7 +18,8 @@ namespace osu.Game.Rulesets.Catch.Tests
var beatmap = new Beatmap();
for (int i = 0; i < 512; i++)
beatmap.HitObjects.Add(new Fruit { X = i % 8 < 4 ? 0.02f : 0.98f, StartTime = i * 100, NewCombo = i % 8 == 0 });
if (i % 5 < 3)
beatmap.HitObjects.Add(new Fruit { X = i % 10 < 5 ? 0.02f : 0.98f, StartTime = i * 100, NewCombo = i % 8 == 0 });
return beatmap;
}