From 54ec96948101726ef6711894cb1770700306f011 Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Wed, 12 Jun 2019 21:19:10 -0700 Subject: [PATCH] add another example to the systemchannelflags xmldoc remark --- src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs b/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs index c4cf3bab4..315221468 100644 --- a/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs +++ b/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs @@ -77,8 +77,11 @@ namespace Discord /// 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. + /// A value of will deny guild boost messages from being sent, and allow all + /// other types of messages. + /// 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; } }