fix removal of reactions
This commit is contained in:
parent
2eed23dabc
commit
fd66696361
1 changed files with 2 additions and 2 deletions
4
app.py
4
app.py
|
@ -80,7 +80,7 @@ async def on_message(message):
|
||||||
|
|
||||||
# :white_check_mark: :x:
|
# :white_check_mark: :x:
|
||||||
if success:
|
if success:
|
||||||
await message.remove_reaction("⏳", client.user.id)
|
await message.remove_reaction("⏳", client.user)
|
||||||
logger.info(
|
logger.info(
|
||||||
f"{command} by {message.author.name}, Game: {messagearray[1]} was SUCESSFUL")
|
f"{command} by {message.author.name}, Game: {messagearray[1]} was SUCESSFUL")
|
||||||
await message.add_reaction("✅")
|
await message.add_reaction("✅")
|
||||||
|
@ -91,7 +91,7 @@ async def on_message(message):
|
||||||
elif command == "restart":
|
elif command == "restart":
|
||||||
await message.channel.send(f"Successfully restarted {game['displayname']}! Happy gaming {message.author.mention}! 🎮")
|
await message.channel.send(f"Successfully restarted {game['displayname']}! Happy gaming {message.author.mention}! 🎮")
|
||||||
else:
|
else:
|
||||||
await message.remove_reaction("⏳", client.user.id)
|
await message.remove_reaction("⏳", client.user)
|
||||||
logger.error(
|
logger.error(
|
||||||
f"{command} by {message.author.name}, Game: {messagearray[1]} FAILED!")
|
f"{command} by {message.author.name}, Game: {messagearray[1]} FAILED!")
|
||||||
await message.add_reaction("❌")
|
await message.add_reaction("❌")
|
||||||
|
|
Loading…
Reference in a new issue