From e1f7e5dac9c9f315aec6b29119d5807bb5233c7e Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 29 Jan 2017 17:02:18 +0000 Subject: [PATCH] Replace "Debug" prefix with "Battlefield Control" for mute messages. --- .../Widgets/WorldInteractionControllerWidget.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs b/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs index c9849d9934..7ded7477b9 100644 --- a/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs +++ b/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs @@ -369,12 +369,12 @@ namespace OpenRA.Mods.Common.Widgets if (Game.Settings.Sound.Mute) { Game.Sound.MuteAudio(); - Game.Debug("Audio muted"); + Game.AddChatLine(Color.White, "Battlefield Control", "Audio muted"); } else { Game.Sound.UnmuteAudio(); - Game.Debug("Audio unmuted"); + Game.AddChatLine(Color.White, "Battlefield Control", "Audio unmuted"); } return true;