diff --git a/OpenRA.Game/Settings.cs b/OpenRA.Game/Settings.cs index 1e4c66c6ee..066a615742 100644 --- a/OpenRA.Game/Settings.cs +++ b/OpenRA.Game/Settings.cs @@ -40,7 +40,6 @@ namespace OpenRA public bool Dedicated = false; public bool DedicatedLoop = true; public bool LockBots = false; - public bool AllowVersionMismatch = false; public string TimestampFormat = "HH:mm"; public ServerSettings() { } @@ -64,7 +63,6 @@ namespace OpenRA Dedicated = other.Dedicated; DedicatedLoop = other.DedicatedLoop; LockBots = other.LockBots; - AllowVersionMismatch = other.AllowVersionMismatch; } }