From 7f694d27401f9d27a4c10c58c9d41d8f5b8dad40 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 29 Jan 2017 17:01:50 +0000 Subject: [PATCH] Replace "Debug" prefix with "Battlefield Control" for stance messages. --- OpenRA.Mods.Common/Widgets/UnitCommandWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Widgets/UnitCommandWidget.cs b/OpenRA.Mods.Common/Widgets/UnitCommandWidget.cs index a904f31e1c..38103532b2 100644 --- a/OpenRA.Mods.Common/Widgets/UnitCommandWidget.cs +++ b/OpenRA.Mods.Common/Widgets/UnitCommandWidget.cs @@ -158,7 +158,7 @@ namespace OpenRA.Mods.Common.Widgets return new Order("SetUnitStance", a, false) { ExtraData = (uint)nextStance }; }); - Game.Debug("Unit stance set to: {0}".F(nextStance)); + Game.AddChatLine(Color.White, "Battlefield Control", "Unit stance set to: {0}".F(nextStance)); return true; }