actually make '/admin stop' work. :) last commit had a security problem. fixed.

This commit is contained in:
Uwe Pfeifer 2022-11-11 22:42:06 +01:00
parent ffba9d49b8
commit abadc6be04

View file

@ -13,6 +13,7 @@ class AdminExt(commands.GroupCog, name="admin"):
super().__init__() # this is now required in this context.
@app_commands.command(name="stop")
@commands.is_owner()
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)