Remove an unused setting

This commit is contained in:
Jacob Dufault
2014-09-26 17:34:04 -04:00
parent 8d54efc7af
commit ad98a831da

View File

@@ -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;