From 4d0f3b155498a608521f872316e29cf8468f1373 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Tue, 28 Dec 2010 17:33:16 +1300 Subject: [PATCH] #447 lock teams by default --- OpenRA.Game/Network/Session.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Network/Session.cs b/OpenRA.Game/Network/Session.cs index bf9ad08ea2..25af7dcaa1 100644 --- a/OpenRA.Game/Network/Session.cs +++ b/OpenRA.Game/Network/Session.cs @@ -68,7 +68,7 @@ namespace OpenRA.Network public string[] Mods = { "ra" }; // mod names public int OrderLatency = 3; public int RandomSeed = 0; - public bool LockTeams = false; // don't allow team changes after game start. + public bool LockTeams = true; // don't allow team changes after game start. public bool AllowCheats = false; }