mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
Reverted changes
This commit is contained in:
parent
ca9fe9f240
commit
18fe37bb22
@ -108,14 +108,14 @@ namespace osu.Game.Rulesets.Catch.Tests
|
||||
float halfWidth = Catcher.CalculateCatchWidth(new BeatmapDifficulty { CircleSize = 0 }) / 2;
|
||||
AddStep("catch fruit", () =>
|
||||
{
|
||||
attemptCatch(new Fruit { OriginalX = -halfWidth + 1 });
|
||||
attemptCatch(new Fruit { OriginalX = halfWidth - 1 });
|
||||
attemptCatch(new Fruit { X = -halfWidth + 1 });
|
||||
attemptCatch(new Fruit { X = halfWidth - 1 });
|
||||
});
|
||||
checkPlate(2);
|
||||
AddStep("miss fruit", () =>
|
||||
{
|
||||
attemptCatch(new Fruit { OriginalX = -halfWidth - 1 });
|
||||
attemptCatch(new Fruit { OriginalX = halfWidth + 1 });
|
||||
attemptCatch(new Fruit { X = -halfWidth - 1 });
|
||||
attemptCatch(new Fruit { X = halfWidth + 1 });
|
||||
});
|
||||
checkPlate(2);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user