diff --git a/OpenRA.Mods.Common/Widgets/Logic/MuteHotkeyLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/MuteHotkeyLogic.cs index ee58469050..3394c179f5 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/MuteHotkeyLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/MuteHotkeyLogic.cs @@ -29,12 +29,12 @@ namespace OpenRA.Mods.Common.Widgets.Logic if (Game.Settings.Sound.Mute) { Game.Sound.MuteAudio(); - TextNotificationsManager.AddSystemLine("Audio muted"); + TextNotificationsManager.AddFeedbackLine("Audio muted"); } else { Game.Sound.UnmuteAudio(); - TextNotificationsManager.AddSystemLine("Audio unmuted"); + TextNotificationsManager.AddFeedbackLine("Audio unmuted"); } return true;