diff --git a/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs b/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs index 315221468..e13536a97 100644 --- a/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs +++ b/src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs @@ -71,17 +71,17 @@ namespace Discord /// public Optional ExplicitContentFilter { get; set; } /// - /// Gets or sets the flags that DISABLE types of system channels. + /// Gets or sets the flags that DISABLE types of system channel messages. /// /// /// 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. + /// given that the has also been set. /// 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. + /// to check if these system channel message types + /// are enabled, without the need to manipulate the logic of the flag. /// public Optional SystemChannelFlags { get; set; } } diff --git a/src/Discord.Net.Core/Entities/Guilds/IGuild.cs b/src/Discord.Net.Core/Entities/Guilds/IGuild.cs index ae868acad..378ca069b 100644 --- a/src/Discord.Net.Core/Entities/Guilds/IGuild.cs +++ b/src/Discord.Net.Core/Entities/Guilds/IGuild.cs @@ -213,9 +213,6 @@ namespace Discord /// /// Gets the URL of this guild's banner image. /// - /// - /// This is referred to as the vanity image in the API. - /// /// /// A URL pointing to the guild's banner image; null if none is set. /// @@ -228,10 +225,10 @@ namespace Discord /// string VanityURLCode { get; } /// - /// Gets the flags for the types of system channels that are disabled. + /// Gets the flags for the types of system channel messages that are disabled. /// /// - /// The flags for the types of system channel flags that are disabled. + /// The flags for the types of system channel messages that are disabled. /// SystemChannelMessageDeny SystemChannelFlags { get; } /// @@ -244,6 +241,9 @@ namespace Discord /// /// Gets the number of premium subscribers of this guild. /// + /// + /// This is the number of users who have boosted this guild. + /// /// /// The number of premium subscribers of this guild. /// diff --git a/src/Discord.Net.Core/Entities/Guilds/SystemChannelMessageDeny.cs b/src/Discord.Net.Core/Entities/Guilds/SystemChannelMessageDeny.cs index 9739d2768..3f69693d0 100644 --- a/src/Discord.Net.Core/Entities/Guilds/SystemChannelMessageDeny.cs +++ b/src/Discord.Net.Core/Entities/Guilds/SystemChannelMessageDeny.cs @@ -11,11 +11,11 @@ namespace Discord /// None = 0, /// - /// The messages that are sent when a user joins the guild. + /// Deny the messages that are sent when a user joins the guild. /// WelcomeMessage = 0b1, /// - /// The messages that are sent when a user boosts the guild. + /// Deny the messages that are sent when a user boosts the guild. /// GuildBoost = 0b10 } diff --git a/src/Discord.Net.Core/Extensions/GuildExtensions.cs b/src/Discord.Net.Core/Extensions/GuildExtensions.cs index b3c52920c..58b749cc4 100644 --- a/src/Discord.Net.Core/Extensions/GuildExtensions.cs +++ b/src/Discord.Net.Core/Extensions/GuildExtensions.cs @@ -6,7 +6,7 @@ namespace Discord public static class GuildExtensions { /// - /// Gets if welcome message system messages are enabled. + /// Gets if welcome system messages are enabled. /// /// The guild to check. /// A bool indicating if the welcome messages are enabled in the system channel.