diff options
Diffstat (limited to 'DiscordToXIV/Configuration.cs')
| -rw-r--r-- | DiscordToXIV/Configuration.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/DiscordToXIV/Configuration.cs b/DiscordToXIV/Configuration.cs index b4b763b..8a1e369 100644 --- a/DiscordToXIV/Configuration.cs +++ b/DiscordToXIV/Configuration.cs @@ -11,6 +11,12 @@ public class Configuration : IPluginConfiguration public int Version { get; set; } = 0; public Dictionary<string, string> ChannelMappings { get; set; } = new Dictionary<string, string>(); public bool HideUsernameWhenNicknameExists { get; set; } = false; + public bool ShowOnlyKnownChannels { get; set; } = false; + public bool AdjustEmoteText { get; set; } = true; + public bool AdjustMentions { get; set; } = true; + public bool HideWelcomeMessage { get; set; } = false; + public bool HideAttachmentUrls { get; set; } = false; + public bool HideStickerUrls { get; set; } = false; public void Save() { |
