This commit is contained in:
Chris Forbes
2009-11-18 20:53:10 +13:00
parent 36721e9566
commit 9a2f2f1cd7
8 changed files with 88 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using OpenRa.Game.GameRules;
using OpenRa.Game.Traits;
using IjwFramework.Types;
namespace OpenRa.Game
{
@@ -143,6 +144,11 @@ namespace OpenRa.Game
pt.rallyPoint = order.TargetLocation;
break;
}
case "Chat":
{
Game.chat.AddLine(Pair.New(order.Player.PlayerName + ":", order.TargetString));
break;
}
default:
throw new NotImplementedException();
}