Add full-stop to UI feedback text notifications

This commit is contained in:
Ivaylo Draganov
2021-06-17 18:39:01 +03:00
committed by Matthias Mailänder
parent a680cae00c
commit 3c77df276a
2 changed files with 6 additions and 6 deletions

View File

@@ -29,12 +29,12 @@ namespace OpenRA.Mods.Common.Widgets.Logic
if (Game.Settings.Sound.Mute)
{
Game.Sound.MuteAudio();
TextNotificationsManager.AddFeedbackLine("Audio muted");
TextNotificationsManager.AddFeedbackLine("Audio muted.");
}
else
{
Game.Sound.UnmuteAudio();
TextNotificationsManager.AddFeedbackLine("Audio unmuted");
TextNotificationsManager.AddFeedbackLine("Audio unmuted.");
}
return true;