New Command Order. GUI changes to settings no longer produce messages in chat. Can't enter commands in chat any more.

This commit is contained in:
alzeih
2010-07-12 19:35:08 +12:00
parent 9b5df39a04
commit bd096436d9
5 changed files with 32 additions and 38 deletions

View File

@@ -181,6 +181,11 @@ namespace OpenRA
{
return new Order("TeamChat", null, text) { IsImmediate = true };
}
public static Order Command(string text)
{
return new Order("Command", null, text) { IsImmediate = true };
}
public static Order StartProduction(Player subject, string item, int count)
{