diff --git a/build/Version.props b/build/Version.props
index bda24b2315..a59e37402d 100644
--- a/build/Version.props
+++ b/build/Version.props
@@ -3,8 +3,8 @@
4.3.0
- 6.5.0
- 7.1.0
+ 6.5.1
+ 7.1.1
5.2.2
0.4.0
1.1.0
diff --git a/src/Tgstation.Server.Api/Models/Internal/DreamDaemonLaunchParameters.cs b/src/Tgstation.Server.Api/Models/Internal/DreamDaemonLaunchParameters.cs
index f5bd309d61..647c22c6db 100644
--- a/src/Tgstation.Server.Api/Models/Internal/DreamDaemonLaunchParameters.cs
+++ b/src/Tgstation.Server.Api/Models/Internal/DreamDaemonLaunchParameters.cs
@@ -48,7 +48,7 @@ namespace Tgstation.Server.Api.Models.Internal
public uint? HeartbeatSeconds { get; set; }
///
- /// Check if we match a given set of
+ /// Check if we match a given set of . is excluded.
///
/// The to compare against
/// if they match, otherwise
@@ -57,7 +57,6 @@ namespace Tgstation.Server.Api.Models.Internal
&& SecurityLevel == otherParameters.SecurityLevel
&& PrimaryPort == otherParameters.PrimaryPort
&& SecondaryPort == otherParameters.SecondaryPort
- && StartupTimeout == otherParameters.StartupTimeout
- && HeartbeatSeconds == otherParameters.HeartbeatSeconds;
+ && HeartbeatSeconds == otherParameters.HeartbeatSeconds; // We intentionally don't check StartupTimeout as it doesn't matter
}
}
\ No newline at end of file