mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-30 15:04:18 +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,
|
await cmd_queue(channel=message.channel,
|
||||||
author=message.author,
|
author=message.author,
|
||||||
params=message.content.split(" "))
|
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"):
|
elif message.content.startswith("!cast"):
|
||||||
try:
|
try:
|
||||||
spell = message.content.split(" ", 1)[1]
|
spell = message.content.split(" ", 1)[1]
|
||||||
|
|
Loading…
Reference in a new issue