1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 17:52:56 +08:00

Make hyperdash testcase easier to win

This commit is contained in:
Dean Herbert 2017-12-01 19:33:20 +09:00
parent 51cae24a26
commit 07081f400c

View File

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