From 80f2ad6de8973d2ebab8b9284eaab744044ff5ef Mon Sep 17 00:00:00 2001 From: Etzelia Date: Mon, 10 Dec 2018 21:43:54 +0100 Subject: [PATCH] Remove pre-retrieve status message from MCM bot actions The results are fast enough that a status message is just spam. --- api/bot.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/api/bot.py b/api/bot.py index a9d7278..b9825ce 100644 --- a/api/bot.py +++ b/api/bot.py @@ -77,9 +77,6 @@ class Discord(discord.Client): if match.group(1) and match.group(2): action = match.group(1)[:1] action_display = "accept" if action == "a" else "deny" if action == "d" else "" - yield from self.discord_message(message.channel, "{0} App ID **{1}**".format( - "Retrieving info for" if action == "i" else "{0}ing".format(action_display.capitalize()), - match.group(2))) application = None try: application = Application.objects.get(id=match.group(2))