Browse Source

[commands] Add Command.cooldown property

pull/7796/head
ImNimboss 3 years ago
committed by GitHub
parent
commit
f5acd9e8b6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      discord/ext/commands/core.py

9
discord/ext/commands/core.py

@ -664,6 +664,15 @@ class Command(_BaseCommand, Generic[CogT, P, T]):
""" """
return self.params.copy() 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 @property
def full_parent_name(self) -> str: def full_parent_name(self) -> str:
""":class:`str`: Retrieves the fully qualified parent command name. """:class:`str`: Retrieves the fully qualified parent command name.

Loading…
Cancel
Save