fix #2199; Game Timer (min 10 seconds)

This commit is contained in:
Igor Popov
2012-06-07 21:10:26 +04:00
committed by Chris Forbes
parent dc6b286d25
commit 4a7417347a
2 changed files with 19 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ namespace OpenRA.GameRules
public bool AllowCheats = false;
public string Map = null;
public string[] Ban = null;
public int TimeOut = 0;
public ServerSettings() { }
@@ -47,6 +48,7 @@ namespace OpenRA.GameRules
AllowCheats = other.AllowCheats;
Map = other.Map;
Ban = other.Ban;
TimeOut = other.TimeOut;
}
}