This commit is contained in:
Chris Forbes
2010-01-14 21:45:18 +13:00
parent 88c085c1c0
commit c7e525151f
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ namespace OpenRA.Server
{ {
Index = newConn.PlayerIndex, Index = newConn.PlayerIndex,
Palette = newConn.PlayerIndex, Palette = newConn.PlayerIndex,
Name = "Player {0}".F(newConn.PlayerIndex), Name = "Player {0}".F(1 + newConn.PlayerIndex),
Race = 1, Race = 1,
State = Session.ClientState.NotReady State = Session.ClientState.NotReady
}); });

View File

@@ -76,7 +76,7 @@ namespace OpenRa.Game.Orders
} }
case "SyncInfo": case "SyncInfo":
{ {
Game.chat.AddLine(Color.White, "Server", "Synchronizing lobby info..."); // temp // Game.chat.AddLine(Color.White, "Server", "Synchronizing lobby info...");
Game.SyncLobbyInfo(order.TargetString); Game.SyncLobbyInfo(order.TargetString);
break; break;
} }