From 79f3249d370ab7f1d8d549fc61a31103e6ee2c84 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 18 Feb 2020 13:40:50 +0900 Subject: [PATCH] Fix typo in method --- osu.Game.Rulesets.Catch/UI/CatcherArea.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/osu.Game.Rulesets.Catch/UI/CatcherArea.cs b/osu.Game.Rulesets.Catch/UI/CatcherArea.cs index cfe2a3abd2..8fdea8a4ef 100644 --- a/osu.Game.Rulesets.Catch/UI/CatcherArea.cs +++ b/osu.Game.Rulesets.Catch/UI/CatcherArea.cs @@ -418,7 +418,7 @@ namespace osu.Game.Rulesets.Catch.UI Explode(f); } - public void Drop(DrawableHitObject fruit) => removeFromPlatWithTransform(fruit, f => + public void Drop(DrawableHitObject fruit) => removeFromPlateWithTransform(fruit, f => { f.MoveToY(f.Y + 75, 750, Easing.InSine); f.FadeOut(750); @@ -428,7 +428,7 @@ namespace osu.Game.Rulesets.Catch.UI { var originalX = fruit.X * Scale.X; - removeFromPlatWithTransform(fruit, f => + removeFromPlateWithTransform(fruit, f => { f.MoveToY(f.Y - 50, 250, Easing.OutSine).Then().MoveToY(f.Y + 50, 500, Easing.InSine); f.MoveToX(f.X + originalX * 6, 1000); @@ -436,7 +436,7 @@ namespace osu.Game.Rulesets.Catch.UI }); } - private void removeFromPlatWithTransform(DrawableHitObject fruit, Action action) + private void removeFromPlateWithTransform(DrawableHitObject fruit, Action action) { if (ExplodingFruitTarget != null) {