mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Merge pull request #11006 from peppy/fix-catch-combo-counter
Fix osu!catch combo counter not showing after 1 combo
This commit is contained in:
@ -55,7 +55,13 @@ namespace osu.Game.Rulesets.Catch.UI
|
|||||||
HitObjectContainer,
|
HitObjectContainer,
|
||||||
CatcherArea,
|
CatcherArea,
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void LoadComplete()
|
||||||
|
{
|
||||||
|
base.LoadComplete();
|
||||||
|
|
||||||
|
// these subscriptions need to be done post constructor to ensure externally bound components have a chance to populate required fields (ScoreProcessor / ComboAtJudgement in this case).
|
||||||
NewResult += onNewResult;
|
NewResult += onNewResult;
|
||||||
RevertResult += onRevertResult;
|
RevertResult += onRevertResult;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user