Merge pull request #17444 from peppy/fix-countdown-counting

Update multiplayer countdown button text more often
This commit is contained in:
Dan Balasescu 2022-03-25 19:40:04 +09:00 committed by GitHub
commit 3986dfd160
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
countdown = room?.Countdown;
if (room?.Countdown != null)
countdownUpdateDelegate ??= Scheduler.AddDelayed(updateButtonText, 1000, true);
countdownUpdateDelegate ??= Scheduler.AddDelayed(updateButtonText, 100, true);
else
{
countdownUpdateDelegate?.Cancel();