remove unused variable

This commit is contained in:
Matthias Mailänder
2015-07-04 19:59:12 +02:00
parent 88e16a890d
commit ec7912eaac

View File

@@ -40,7 +40,6 @@ namespace OpenRA
public bool Dedicated = false; public bool Dedicated = false;
public bool DedicatedLoop = true; public bool DedicatedLoop = true;
public bool LockBots = false; public bool LockBots = false;
public bool AllowVersionMismatch = false;
public string TimestampFormat = "HH:mm"; public string TimestampFormat = "HH:mm";
public ServerSettings() { } public ServerSettings() { }
@@ -64,7 +63,6 @@ namespace OpenRA
Dedicated = other.Dedicated; Dedicated = other.Dedicated;
DedicatedLoop = other.DedicatedLoop; DedicatedLoop = other.DedicatedLoop;
LockBots = other.LockBots; LockBots = other.LockBots;
AllowVersionMismatch = other.AllowVersionMismatch;
} }
} }