Skip to content

Commit

Permalink
Replace "Debug" prefix with "Battlefield Control" for mute messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
pchote committed Jan 29, 2017
1 parent 2fc7994 commit 20a8ec8
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -369,12 +369,12 @@ bool ToggleMute()
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;
Expand Down

0 comments on commit 20a8ec8

Please sign in to comment.