Use better fallback

Seems better to use the rate from a non-gameplay clock than to arbitrarily apply 1.
This commit is contained in:
Poyo 2023-11-21 15:18:04 -08:00
parent d9cd546377
commit 0cf925dadf
1 changed files with 1 additions and 1 deletions

View File

@ -704,7 +704,7 @@ protected void ApplyResult(Action<JudgementResult> application)
}
Result.RawTime = Time.Current;
Result.GameplayRate = (Clock as IGameplayClock)?.GetTrueGameplayRate() ?? 1.0;
Result.GameplayRate = (Clock as IGameplayClock)?.GetTrueGameplayRate() ?? Clock.Rate;
if (Result.HasResult)
updateState(Result.IsHit ? ArmedState.Hit : ArmedState.Miss);