more styling bits

main
xenofem 2022-03-25 18:10:27 -04:00
parent 9117f0dfa1
commit 7d9d6012d9
1 changed files with 6 additions and 2 deletions

8
bot.py
View File

@ -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()