cooldown discord.py code example
Example 1: is_on_cooldown discord.py
is_on_cooldown(Context)
'''
Context is the context for the command
is_on_cooldown returns a boolean operator of if the command mentioned is on cooldown.
You need to pass_context to use it
'''
EXAMPLE:
@client.command(pass_content=True)
async def notcool(ctx):
for command in client.commands():
await ctx.channel.send(ctx.is_on_cooldown(command))
Example 2: add cooldown to command discord.py
@commands.cooldown(1, 30, commands.BucketType.user)