1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

Reverted changes

This commit is contained in:
Drison64 2022-09-19 17:25:35 +02:00
parent ca9fe9f240
commit 18fe37bb22

View File

@ -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);
}