one small update ;D

This commit is contained in:
Uwe Pfeifer 2024-06-18 13:57:34 +02:00
parent 2d307c6598
commit b48f3c1212

View file

@ -10,12 +10,12 @@ import discord
from discord import app_commands from discord import app_commands
from discord.ext import commands from discord.ext import commands
@app_commands.default_permissions()
class AdminExt(commands.GroupCog, name="admin"): class AdminExt(commands.GroupCog, name="admin"):
def __init__(self, bot: commands.Bot) -> None: def __init__(self, bot: commands.Bot) -> None:
self.bot = bot self.bot = bot
super().__init__() # this is now required in this context. super().__init__() # this is now required in this context.
@app_commands.default_permissions()
@app_commands.command(name="stop", description="Stops (shuts down) the bot") @app_commands.command(name="stop", description="Stops (shuts down) the bot")
@commands.is_owner() @commands.is_owner()
async def admin_stop(self, interaction: discord.Interaction) -> None: async def admin_stop(self, interaction: discord.Interaction) -> None:
@ -23,7 +23,6 @@ class AdminExt(commands.GroupCog, name="admin"):
await interaction.response.send_message("The bot will now shutdown. Good bye! :)") await interaction.response.send_message("The bot will now shutdown. Good bye! :)")
await self.bot.close() await self.bot.close()
@app_commands.default_permissions()
@app_commands.command(name="say", description="Makes the bot repeat what you type") @app_commands.command(name="say", description="Makes the bot repeat what you type")
@app_commands.describe(text="Text to send to the channel/query.") @app_commands.describe(text="Text to send to the channel/query.")
@commands.is_owner() @commands.is_owner()
@ -31,7 +30,6 @@ class AdminExt(commands.GroupCog, name="admin"):
""" /admin say <text> """ """ /admin say <text> """
await interaction.response.send_message(text) await interaction.response.send_message(text)
@app_commands.default_permissions()
@app_commands.command(name="guilds", description="List guilds the bot is in") @app_commands.command(name="guilds", description="List guilds the bot is in")
@commands.is_owner() @commands.is_owner()
async def admin_guilds(self, interaction: discord.Interaction) -> None: async def admin_guilds(self, interaction: discord.Interaction) -> None: