Merge pull request #2845 from ihptru/bots

option to disable bots on server + disable bots on any dedicated server
This commit is contained in:
Matthias Mailänder
2013-03-26 14:32:29 -07:00
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;
}
}