diff --git a/app.py b/app.py index 56c84db..946f154 100644 --- a/app.py +++ b/app.py @@ -80,7 +80,7 @@ async def on_message(message): # :white_check_mark: :x: if success: - await message.remove_reaction("⏳") + await message.remove_reaction("⏳", client.user.id) logger.info( f"{command} by {message.author.name}, Game: {messagearray[1]} was SUCESSFUL") await message.add_reaction("✅") @@ -91,7 +91,7 @@ async def on_message(message): elif command == "restart": await message.channel.send(f"Successfully restarted {game['displayname']}! Happy gaming {message.author.mention}! 🎮") else: - await message.remove_reaction("⏳") + await message.remove_reaction("⏳", client.user.id) logger.error( f"{command} by {message.author.name}, Game: {messagearray[1]} FAILED!") await message.add_reaction("❌")