From 468205d450eac1706f46d25eeeb119985f453bd5 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 1 Feb 2018 19:22:31 +0900 Subject: [PATCH] Fix osu!catch autoplay missing bananas when running above 1x playback speed --- osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs | 10 +++++----- osu.Game.Rulesets.Catch/UI/CatcherArea.cs | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs b/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs index 7f56c3bbb1..39b7ffb387 100644 --- a/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs +++ b/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs @@ -35,10 +35,6 @@ public CatchPlayfield(BeatmapDifficulty difficulty, Func - { - RelativeSizeAxes = Axes.Both, - }, explodingFruitContainer = new Container { RelativeSizeAxes = Axes.Both, @@ -49,7 +45,11 @@ public CatchPlayfield(BeatmapDifficulty difficulty, Func + { + RelativeSizeAxes = Axes.Both, + }, }); } diff --git a/osu.Game.Rulesets.Catch/UI/CatcherArea.cs b/osu.Game.Rulesets.Catch/UI/CatcherArea.cs index 5252ba294a..7c548f70d4 100644 --- a/osu.Game.Rulesets.Catch/UI/CatcherArea.cs +++ b/osu.Game.Rulesets.Catch/UI/CatcherArea.cs @@ -84,9 +84,9 @@ public void OnJudgement(DrawableCatchHitObject fruit, Judgement judgement) } } - protected override void Update() + protected override void UpdateAfterChildren() { - base.Update(); + base.UpdateAfterChildren(); var state = GetContainingInputManager().CurrentState as CatchFramedReplayInputHandler.CatchReplayState;