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;