From f9dfeb014026aec84ec694dfb00c26d09d6cb4b4 Mon Sep 17 00:00:00 2001 From: Lu Baumann Date: Mon, 31 Oct 2022 01:34:33 +0100 Subject: [PATCH] autoremove reaction to start server --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 4f83809..33f5c44 100644 --- a/main.py +++ b/main.py @@ -43,6 +43,7 @@ class MyClient(discord.Client): if reaction.message == self.information_message: if reaction.emoji == "▶": self.computer_manager.start_computer() + await reaction.message.remove_reaction("▶", user) if __name__ == "__main__":