From b8e45afe9afe4ff49e832e967971cb22e2b9e310 Mon Sep 17 00:00:00 2001 From: DevilXD Date: Mon, 29 Apr 2019 11:47:32 +0200 Subject: [PATCH] Fixed TextChannel edit method missing slowmode unit --- discord/channel.py | 4 ++-- discord/guild.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/discord/channel.py b/discord/channel.py index c346bfcc6..73205cfed 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -198,8 +198,8 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): The new category for this channel. Can be ``None`` to remove the category. slowmode_delay: :class:`int` - Specifies the slowmode rate limit for user in this channel. A value of - `0` disables slowmode. The maximum value possible is `21600`. + Specifies the slowmode rate limit for user in this channel, in seconds. + A value of `0` disables slowmode. The maximum value possible is `21600`. reason: Optional[:class:`str`] The reason for editing this channel. Shows up on the audit log. diff --git a/discord/guild.py b/discord/guild.py index 53a204981..3dd28533e 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -676,8 +676,8 @@ class Guild(Hashable): topic: Optional[:class:`str`] The new channel's topic. slowmode_delay: :class:`int` - Specifies the slowmode rate limit for user in this channel. - The maximum value possible is `120`. + Specifies the slowmode rate limit for user in this channel, in seconds. + The maximum value possible is `21600`. nsfw: :class:`bool` To mark the channel as NSFW or not. reason: Optional[:class:`str`]