diff --git a/src/structures/TextChannel.js b/src/structures/TextChannel.js index 4d544075cea6..5c8e984f4144 100644 --- a/src/structures/TextChannel.js +++ b/src/structures/TextChannel.js @@ -53,6 +53,7 @@ class TextChannel extends GuildChannel { /** * The ratelimit per user for this channel in seconds + * It is not currently possible to set a rate limit per user on a `NewsChannel`. * @type {number} */ this.rateLimitPerUser = data.rate_limit_per_user || 0; @@ -68,6 +69,7 @@ class TextChannel extends GuildChannel { /** * Sets the rate limit per user for this channel. + * It is not currently possible to set the rate limit per user on a `NewsChannel`. * @param {number} rateLimitPerUser The new ratelimit in seconds * @param {string} [reason] Reason for changing the channel's ratelimits * @returns {Promise}