From 7d9d6012d982726859ff1131bb77fa272fd46553 Mon Sep 17 00:00:00 2001 From: xenofem Date: Fri, 25 Mar 2022 18:10:27 -0400 Subject: [PATCH] more styling bits --- bot.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 07b8760..6598545 100644 --- a/bot.py +++ b/bot.py @@ -23,7 +23,7 @@ ELEVATOR_SHIT = [ '*a rattling. the elevator begins to shake*' '*a squealing of cables and pulleys*' ] -CRASH = '***the elevator crashes to the bottom***' +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 = '🌹' @@ -73,7 +73,11 @@ class MikageClient(discord.Client): return try: top_category = guild.by_category()[0][0] - channel = await guild.create_text_channel(CHANNEL_NAME, category=top_category) + channel = await guild.create_text_channel( + CHANNEL_NAME, + category=top_category, + topic="the he/they therapist - you know, the one who lives in the morgue in the basement of that building that doesn't exist?" + ) await channel.move(category=top_category, beginning=True) self.state[guild_id] = {'channel': channel.id} self.save_state()