1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:17:23 +08:00

Fix osu!catch combo counter not showing after 1 combo

This commit is contained in:
Dean Herbert 2020-11-30 15:20:52 +09:00
parent 5053a7baf9
commit 73990a6674

View File

@ -55,6 +55,11 @@ namespace osu.Game.Rulesets.Catch.UI
HitObjectContainer,
CatcherArea,
};
}
protected override void LoadComplete()
{
base.LoadComplete();
NewResult += onNewResult;
RevertResult += onRevertResult;