From a680cae00c4ff04a1104b5a462267cd3c302e117 Mon Sep 17 00:00:00 2001 From: Ivaylo Draganov Date: Thu, 17 Jun 2021 17:07:45 +0300 Subject: [PATCH] Move audio muted/unmuted notifications to feedback pool --- OpenRA.Mods.Common/Widgets/Logic/MuteHotkeyLogic.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;