make spm counter show up automatically with spun out

This commit is contained in:
mcendu 2020-02-09 13:49:08 +08:00
parent d314b38699
commit 68873830aa
No known key found for this signature in database
GPG Key ID: FBCD5D45163D6364
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ protected override void CheckForResult(bool userTriggered, double timeOffset)
protected override void Update()
{
Disc.Tracking = OsuActionInputManager?.PressedActions.Any(x => x == OsuAction.LeftButton || x == OsuAction.RightButton) ?? false;
if (!SpmCounter.IsPresent && Disc.Tracking)
if (!SpmCounter.IsPresent && (Disc.Tracking || !Disc.Enabled))
SpmCounter.FadeIn(HitObject.TimeFadeIn);
base.Update();