1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 16:13:33 +08:00

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
Unverified
@@ -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();