From 31489abdd1cc3620084dbe24584d6d919013414a Mon Sep 17 00:00:00 2001 From: wrexbe <81056464+wrexbe@users.noreply.github.com> Date: Sat, 11 Jun 2022 19:40:27 -0700 Subject: [PATCH] Format redial wait time (#8767) --- Content.Client/Launcher/LauncherConnectingGui.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Launcher/LauncherConnectingGui.xaml.cs b/Content.Client/Launcher/LauncherConnectingGui.xaml.cs index acf4cc91a8..b188c27bf2 100644 --- a/Content.Client/Launcher/LauncherConnectingGui.xaml.cs +++ b/Content.Client/Launcher/LauncherConnectingGui.xaml.cs @@ -79,7 +79,7 @@ namespace Content.Client.Launcher else { RedialButton.Disabled = true; - RedialButton.Text = Loc.GetString("connecting-redial-wait", ("time", _redialWaitTime)); + RedialButton.Text = Loc.GetString("connecting-redial-wait", ("time", _redialWaitTime.ToString("00.000"))); } }