diff --git a/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs b/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs
index ee110646fa..7483760afb 100644
--- a/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs
+++ b/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs
@@ -289,11 +289,7 @@ namespace Tgstation.Server.Host.Components.Watchdog
/// The for the operation.
/// A resulting in the to take.
protected virtual ValueTask HandleNormalReboot(CancellationToken cancellationToken)
- {
- var settingsUpdatePending = ActiveLaunchParameters != LastLaunchParameters;
- var result = settingsUpdatePending ? MonitorAction.Restart : MonitorAction.Continue;
- return ValueTask.FromResult(result);
- }
+ => ValueTask.FromResult(MonitorAction.Continue);
///
/// Handler for .
diff --git a/src/Tgstation.Server.Host/Components/Watchdog/IWatchdog.cs b/src/Tgstation.Server.Host/Components/Watchdog/IWatchdog.cs
index 2d8d0f5d24..39600383f3 100644
--- a/src/Tgstation.Server.Host/Components/Watchdog/IWatchdog.cs
+++ b/src/Tgstation.Server.Host/Components/Watchdog/IWatchdog.cs
@@ -37,6 +37,7 @@ namespace Tgstation.Server.Host.Components.Watchdog
///
/// The the active server is using.
///
+ /// This may not be the exact same as but still be associated with the same session.
DreamDaemonLaunchParameters LastLaunchParameters { get; }
///