option to disable bots on server + disable bots on any dedicated server due to #2540

This commit is contained in:
Igor Popov
2013-03-24 19:35:44 +04:00
parent eb4f7a046f
commit 41d0860db4
2 changed files with 4 additions and 0 deletions

View File

@@ -36,6 +36,7 @@ namespace OpenRA.GameRules
public int TimeOut = 0;
public bool Dedicated = false;
public bool DedicatedLoop = true;
public bool LockBots = false;
public ServerSettings() { }
@@ -53,6 +54,7 @@ namespace OpenRA.GameRules
TimeOut = other.TimeOut;
Dedicated = other.Dedicated;
DedicatedLoop = other.DedicatedLoop;
LockBots = other.LockBots;
}
}