From ad98a831da67d2b9abb1c55a8200dea9ade61806 Mon Sep 17 00:00:00 2001 From: Jacob Dufault Date: Fri, 26 Sep 2014 17:34:04 -0400 Subject: [PATCH] Remove an unused setting --- OpenRA.Game/Settings.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/OpenRA.Game/Settings.cs b/OpenRA.Game/Settings.cs index aadc6cad82..781bffcad7 100644 --- a/OpenRA.Game/Settings.cs +++ b/OpenRA.Game/Settings.cs @@ -30,7 +30,6 @@ namespace OpenRA public bool NatDeviceAvailable = false; // internal check if discovery succeeded public int NatDiscoveryTimeout = 1000; // ms to search for UPnP enabled NATs public bool VerboseNatDiscovery = false; // print very detailed logs for debugging - public bool AllowCheats = false; public string Map = null; public string[] Ban = { }; public int TimeOut = 0; @@ -54,7 +53,6 @@ namespace OpenRA NatDeviceAvailable = other.NatDeviceAvailable; NatDiscoveryTimeout = other.NatDiscoveryTimeout; VerboseNatDiscovery = other.VerboseNatDiscovery; - AllowCheats = other.AllowCheats; Map = other.Map; Ban = other.Ban; TimeOut = other.TimeOut;