diff --git a/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs b/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs index 05656382c3..b5087c1c1c 100644 --- a/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs +++ b/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs @@ -747,7 +747,10 @@ namespace Tgstation.Server.Host.Components.Watchdog return; ActiveLaunchParameters = launchParameters; if (Running) + { ActiveParametersUpdated.TrySetResult(null); // queue an update + ActiveParametersUpdated = new TaskCompletionSource(); + } } }