diff --git a/OpenRA.Mods.Common/Widgets/Logic/MuteHotkeyLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/MuteHotkeyLogic.cs index 93c746eb5d..76e3e8d40c 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/MuteHotkeyLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/MuteHotkeyLogic.cs @@ -30,12 +30,12 @@ namespace OpenRA.Mods.Common.Widgets.Logic if (Game.Settings.Sound.Mute) { Game.Sound.MuteAudio(); - Game.AddChatLine("Battlefield Control", Color.White, "Audio muted"); + Game.AddSystemLine("Battlefield Control", "Audio muted"); } else { Game.Sound.UnmuteAudio(); - Game.AddChatLine("Battlefield Control", Color.White, "Audio unmuted"); + Game.AddSystemLine("Battlefield Control", "Audio unmuted"); } return true;