From ec7912eaac2c3d93f005008ce5efc5e6425d7c00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 4 Jul 2015 19:59:12 +0200 Subject: [PATCH] remove unused variable --- OpenRA.Game/Settings.cs | 2 -- 1 file changed, 2 deletions(-) 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; } }