diff --git a/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs b/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs
index 0a35672cf7..6dc7a2805a 100644
--- a/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs
+++ b/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs
@@ -455,7 +455,13 @@ namespace Tgstation.Server.Host.Components.Deployment
await Task.WhenAll(symATask, symBTask).ConfigureAwait(false);
- await chatManager.SendUpdateMessage(String.Format(CultureInfo.InvariantCulture, "Deployment complete! Changes will be applied {0}.", watchdog.DeploymentApplicationTime), cancellationToken).ConfigureAwait(false);
+ await chatManager.SendUpdateMessage(
+ String.Format(
+ CultureInfo.InvariantCulture,
+ "Deployment complete! Changes will be applied when DreamDaemon {0}.",
+ watchdog.Running ? "reboots" : "is launched"),
+ cancellationToken)
+ .ConfigureAwait(false);
logger.LogDebug("Compile complete!");
}
diff --git a/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs b/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs
index 61050c4146..36f1b5e3a7 100644
--- a/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs
+++ b/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs
@@ -23,9 +23,6 @@ namespace Tgstation.Server.Host.Components.Watchdog
///
public sealed override Models.CompileJob ActiveCompileJob => Server?.Dmb.CompileJob;
- ///
- protected override string DeploymentTimeWhileRunning => "immediately";
-
///
public sealed override RebootState? RebootState => Server?.RebootState;
diff --git a/src/Tgstation.Server.Host/Components/Watchdog/IWatchdog.cs b/src/Tgstation.Server.Host/Components/Watchdog/IWatchdog.cs
index 8fac965b1f..bd9c175e95 100644
--- a/src/Tgstation.Server.Host/Components/Watchdog/IWatchdog.cs
+++ b/src/Tgstation.Server.Host/Components/Watchdog/IWatchdog.cs
@@ -21,11 +21,6 @@ namespace Tgstation.Server.Host.Components.Watchdog
///
bool AlphaIsActive { get; }
- ///
- /// When new s will be made active.
- ///
- string DeploymentApplicationTime { get; }
-
///
/// The currently running on the server
///
diff --git a/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs b/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs
index 0de52d5f00..25113ccfcf 100644
--- a/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs
+++ b/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs
@@ -30,9 +30,6 @@ namespace Tgstation.Server.Host.Components.Watchdog
///
public abstract bool AlphaIsActive { get; }
- ///
- public string DeploymentApplicationTime => Running ? DeploymentTimeWhileRunning : "when DreamDaemon is launched";
-
///
public abstract Models.CompileJob ActiveCompileJob { get; }
@@ -45,11 +42,6 @@ namespace Tgstation.Server.Host.Components.Watchdog
///
public abstract RebootState? RebootState { get; }
- ///
- /// When deployments happen if the is .
- ///
- protected abstract string DeploymentTimeWhileRunning { get; }
-
///
/// that completes when are changed and we are .
///
diff --git a/src/Tgstation.Server.Host/Components/Watchdog/WindowsWatchdog.cs b/src/Tgstation.Server.Host/Components/Watchdog/WindowsWatchdog.cs
index 7f1b83ae94..b191159c20 100644
--- a/src/Tgstation.Server.Host/Components/Watchdog/WindowsWatchdog.cs
+++ b/src/Tgstation.Server.Host/Components/Watchdog/WindowsWatchdog.cs
@@ -17,9 +17,6 @@ namespace Tgstation.Server.Host.Components.Watchdog
///
sealed class WindowsWatchdog : BasicWatchdog
{
- ///
- protected override string DeploymentTimeWhileRunning => "when DreamDaemon reboots";
-
///
/// The for the .
///