diff --git a/ext/administration.py b/ext/administration.py index fe141c5..e562c1f 100644 --- a/ext/administration.py +++ b/ext/administration.py @@ -12,7 +12,7 @@ class AdminExt(commands.GroupCog, name="admin"): self.bot = bot super().__init__() # this is now required in this context. - @app_commands.command(name="stop") + @app_commands.command(name="stop", description="Stops (shuts down) the bot") @commands.is_owner() async def admin_stop(self, interaction: discord.Interaction) -> None: """ /admin stop """ @@ -21,4 +21,4 @@ class AdminExt(commands.GroupCog, name="admin"): async def setup(bot: commands.Bot) -> None: - await bot.add_cog(AdminExt(bot)) \ No newline at end of file + await bot.add_cog(AdminExt(bot))