From f5acd9e8b6d6be595b01ae636389f62657ee5fd8 Mon Sep 17 00:00:00 2001 From: ImNimboss Date: Tue, 29 Mar 2022 12:20:04 +0530 Subject: [PATCH] [commands] Add Command.cooldown property --- discord/ext/commands/core.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 1db6631c0..8dfd1c6b0 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -664,6 +664,15 @@ class Command(_BaseCommand, Generic[CogT, P, T]): """ return self.params.copy() + @property + def cooldown(self) -> Optional[Cooldown]: + """Optional[:class:`~discord.app_commands.Cooldown`]: The cooldown of a command when invoked + or ``None`` if the command doesn't have a registered cooldown. + + .. versionadded:: 2.0 + """ + return self._buckets._cooldown + @property def full_parent_name(self) -> str: """:class:`str`: Retrieves the fully qualified parent command name.