Fix missed rename

This commit is contained in:
smoogipoo 2018-08-06 12:23:08 +09:00
parent 3a7488767c
commit 35b5aeb99a
2 changed files with 2 additions and 2 deletions

View File

@ -68,6 +68,6 @@ namespace osu.Game.Rulesets.Catch.UI
}
private void onNewResult(DrawableHitObject judgedObject, JudgementResult result)
=> catcherArea.OnJudgement((DrawableCatchHitObject)judgedObject, result);
=> catcherArea.OnResult((DrawableCatchHitObject)judgedObject, result);
}
}

View File

@ -48,7 +48,7 @@ namespace osu.Game.Rulesets.Catch.UI
private DrawableCatchHitObject lastPlateableFruit;
public void OnJudgement(DrawableCatchHitObject fruit, JudgementResult result)
public void OnResult(DrawableCatchHitObject fruit, JudgementResult result)
{
void runAfterLoaded(Action action)
{