How do I add multiple commands with the same name in Discord.py? For example:
@client.command(aliases=["dices"])
async def dice(ctx, num):
try:
num=int(num)
bla bla bla
except ValueError:
await ctx.send("Invalid Number!")
@client.command(name='dice',aliases=["dices"])
async def dice_no_param(ctx):
try:
roll = random.randint(1,6)
bla bla bla
except ValueError:
await ctx.send("Invalid Number!")
But obviously, I get an error.
Traceback (most recent call last):
File "main.py", line 1, in <module>
import bot
File "/home/runner/HamburgerBot/bot.py", line 147, in <module>
async def dice_no_param(ctx):
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord/ext/commands/core.py", line 1163, in decorator
self.add_command(result)
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord/ext/commands/core.py", line 1071, in add_command
raise discord.ClientException('Command {0.name} is already registered.'.format(command))
discord.errors.ClientException: Command dice is already registered.