Replace "Debug" prefix with "Battlefield Control" for mute messages.

This commit is contained in:
Paul Chote
2017-01-29 17:02:18 +00:00
parent f09b41b8b8
commit e1f7e5dac9

View File

@@ -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;