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

Do not add KPS calculation when gameplay rate is 0

This commit is contained in:
Ryuki 2022-08-05 15:51:07 +02:00
parent 42d1bdfc95
commit 24c29b7e2f
No known key found for this signature in database
GPG Key ID: A353889EAEACBF49

View File

@ -64,7 +64,7 @@ namespace osu.Game.Screens.Play.HUD.KPSCounter
private void addTimestamp()
{
if (workingClock != null && workingClock.CurrentTime >= maxTime)
if (workingClock != null && workingClock.CurrentTime >= maxTime && gameplayClock.TrueGameplayRate > 0)
{
timestamps.Add(workingClock.CurrentTime);
maxTime = workingClock.CurrentTime;