diff --git a/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs b/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs index 2114d154a..c4cf3bab4 100644 --- a/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs +++ b/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs @@ -72,8 +72,14 @@ namespace Discord public Optional ExplicitContentFilter { get; set; } /// /// Gets or sets the flags that DISABLE types of system channels. - /// This logic is inverted! /// + /// + /// These flags are inverted. Setting a flag will disable that system channel message from being sent. + /// A value of will allow all system channel message types to be sent, + /// given that the has also been sent. + /// Refer to the extension methods and + /// to check if these system channel messages are enabled, without the need to manipulate the flags. + /// public Optional SystemChannelFlags { get; set; } } }