From 5e38af2b6392bc49a8c45a1d3a33c337ffb7d117 Mon Sep 17 00:00:00 2001 From: xenofem Date: Fri, 25 Mar 2022 19:03:36 -0400 Subject: [PATCH] Revert "fancier falling" - doesn't work well with discord ratelimits This reverts commit 26a4fa70000c6d0df5ec80531c4e88cdf71a6ee4. --- bot.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/bot.py b/bot.py index e5e845d..0d45f4b 100644 --- a/bot.py +++ b/bot.py @@ -23,10 +23,7 @@ ELEVATOR_SHIT = [ '*a rattling. the elevator begins to shake*' '*a squealing of cables and pulleys*' ] -START_FALL = '*the elevator begins freefalling*' -FALL = '|' -FALL_COUNT = 10 -CRASH = '***the elevator crashes to the bottom***' + ('\n'*10) + '...' +CRASH = ('|\n'*10) + '***the elevator crashes to the bottom***' + ('\n'*10) + '...' FINAL_MESSAGE = 'I understand. Your only choice is to revolutionize the world. The path you must take has been prepared for you.' ROSE = '🌹' @@ -110,9 +107,6 @@ class MikageClient(discord.Client): return if channel_index == len(channels) - 1: if category_index == len(categories) - 2: - await try_send(message.channel, START_FALL) - for i in range(FALL_COUNT): - await try_send(message.channel, FALL) await message.channel.move(category=categories[-1][0], end=True) await try_send(message.channel, CRASH) await asyncio.sleep(TYPING_DELAY)