crude map change support; quite a few things aren't right

This commit is contained in:
Chris Forbes
2009-12-22 21:49:04 +13:00
parent ff90bd7b21
commit f57865bd32
7 changed files with 81 additions and 35 deletions

View File

@@ -105,6 +105,12 @@ namespace OpenRa.Game
Game.orderManager.StartGame();
break;
}
case "ChangeMap":
{
Game.chat.AddLine(Color.White, "Server", "Changing map to {0}".F(order.TargetString));
Game.ChangeMap(order.TargetString);
break;
}
default:
throw new NotImplementedException();