actually make '/admin stop' work. :)

This commit is contained in:
Uwe Pfeifer 2022-11-11 22:39:08 +01:00
parent 7c2cedef62
commit ffba9d49b8

View file

@ -16,6 +16,7 @@ class AdminExt(commands.GroupCog, name="admin"):
async def admin_stop(self, interaction: discord.Interaction) -> None:
""" /admin stop """
await interaction.response.send_message("The bot will now shutdown. Good bye! :)", ephemeral=True)
await self.bot.close()
async def setup(bot: commands.Bot) -> None: