Player has Country now, not Race

This commit is contained in:
Chris Forbes
2010-02-10 15:19:26 +13:00
parent e4b73b3924
commit ea3b674d9a
9 changed files with 34 additions and 23 deletions

View File

@@ -108,7 +108,7 @@ namespace OpenRA.Server
Index = newConn.PlayerIndex,
PaletteIndex = ChooseFreePalette(),
Name = "Player {0}".F(1 + newConn.PlayerIndex),
Race = "allies", /* hack */
Country = "allies", /* hack */
State = Session.ClientState.NotReady
});
@@ -249,7 +249,7 @@ namespace OpenRA.Server
return true;
}
GetClient(conn).Race = s;
GetClient(conn).Country = s;
SyncLobbyInfo();
return true;
}},