more styling bits
This commit is contained in:
parent
9117f0dfa1
commit
7d9d6012d9
8
bot.py
8
bot.py
|
@ -23,7 +23,7 @@ ELEVATOR_SHIT = [
|
||||||
'*a rattling. the elevator begins to shake*'
|
'*a rattling. the elevator begins to shake*'
|
||||||
'*a squealing of cables and pulleys*'
|
'*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.'
|
FINAL_MESSAGE = 'I understand. Your only choice is to revolutionize the world. The path you must take has been prepared for you.'
|
||||||
ROSE = '🌹'
|
ROSE = '🌹'
|
||||||
|
|
||||||
|
@ -73,7 +73,11 @@ class MikageClient(discord.Client):
|
||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
top_category = guild.by_category()[0][0]
|
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)
|
await channel.move(category=top_category, beginning=True)
|
||||||
self.state[guild_id] = {'channel': channel.id}
|
self.state[guild_id] = {'channel': channel.id}
|
||||||
self.save_state()
|
self.save_state()
|
||||||
|
|
Loading…
Reference in a new issue