fix: Minor UI fixes.

This commit is contained in:
2023-08-16 12:32:45 +03:00
parent 2cc90375c7
commit 0904b2deb7
5 changed files with 11 additions and 9 deletions

View File

@@ -261,7 +261,10 @@ class RoomCog(LionCog):
self._start(room)
# Send tips message
await channel.send("{mention} welcome to your private room! (TBD TIPS HERE)".format(mention=owner.mention))
# TODO: Actual tips.
await channel.send(
"{mention} welcome to your private room! You may use the menu below to configure it.".format(mention=owner.mention)
)
# Send config UI
ui = RoomUI(self.bot, room, callerid=owner.id, timeout=None)