1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 00:07:24 +08: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:
Dean Herbert 2022-05-03 00:32:16 +09:00 committed by GitHub
commit abdb4c16a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,7 +106,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
{ {
updateButtonText(); updateButtonText();
int secondsRemaining = countdownTimeRemaining.Seconds; int secondsRemaining = (int)countdownTimeRemaining.TotalSeconds;
playTickSound(secondsRemaining); playTickSound(secondsRemaining);