Allow the player to toggle the display of UI Feedback chat pool

This commit is contained in:
Ivaylo Draganov
2020-02-29 22:37:27 +02:00
committed by Paul Chote
parent 6af354ff99
commit 2ea6bfba7b
5 changed files with 42 additions and 3 deletions

View File

@@ -36,7 +36,8 @@ namespace OpenRA
[Flags]
public enum TextNotificationPoolFilters
{
None = 0
None = 0,
Feedback = 1
}
public enum WorldViewport { Native, Close, Medium, Far }
@@ -272,7 +273,7 @@ namespace OpenRA
[Desc("Allow mods to enable the Discord service that can interact with a local Discord client.")]
public bool EnableDiscordService = true;
public TextNotificationPoolFilters TextNotificationPoolFilters = TextNotificationPoolFilters.None;
public TextNotificationPoolFilters TextNotificationPoolFilters = TextNotificationPoolFilters.Feedback;
}
public class Settings