G
G
Goshujin2021-05-27 01:26:22
Python
Goshujin, 2021-05-27 01:26:22

Is it possible to use a decorator inside a command?

It is necessary that the command goes on cooldown only if all arguments are present, and if they are absent, it does nothing.
For example:

@commands.command()
async def say(ctx, arg = None):
    if arg == None:
        pass
    else:
        @commands.cooldown(1, 500, type = BucketType.member)
        await ctx.send(arg)

Answer the question

In order to leave comments, you need to log in

2 answer(s)
M
Maxim Nevzorov, 2021-05-27
@Goshujin

https://discordpy.readthedocs.io/en/stable/ext/com...

@commands.command(cooldown_after_parsing=True)
async def cmd(ctx, ...):
    """..."""
    ...

S
Summer Breeze, 2021-05-27
@qipzone

No. Since decorators are just sugar over a regular closure, wrapping the construct won't work.
You can take it out into a separate function or method and wrap it already.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question