mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
Add !shuffle
This commit is contained in:
parent
59b19c2e15
commit
43487b125f
1 changed files with 4 additions and 0 deletions
|
@ -218,6 +218,10 @@ async def on_message(message: discord.Message):
|
|||
await cmd_queue(channel=message.channel,
|
||||
author=message.author,
|
||||
params=message.content.split(" "))
|
||||
elif message.content.startswith("!shuffle"):
|
||||
await cmd_shuffle(channel=message.channel,
|
||||
author=message.author,
|
||||
params=message.content.split(" "))
|
||||
elif message.content.startswith("!cast"):
|
||||
try:
|
||||
spell = message.content.split(" ", 1)[1]
|
||||
|
|
Loading…
Reference in a new issue