mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Merge pull request #18056 from peppy/fix-countdown-sounds
Fix countdown stopping at first completed minute rather than actual last minute
This commit is contained in:
@ -106,7 +106,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
|
||||
{
|
||||
updateButtonText();
|
||||
|
||||
int secondsRemaining = countdownTimeRemaining.Seconds;
|
||||
int secondsRemaining = (int)countdownTimeRemaining.TotalSeconds;
|
||||
|
||||
playTickSound(secondsRemaining);
|
||||
|
||||
|
Reference in New Issue
Block a user