From 554f8cf5bc66aa363e7b1e1b2e0fe9b4122e7b91 Mon Sep 17 00:00:00 2001 From: tookender Date: Sat, 1 Jun 2024 18:14:27 +0200 Subject: [PATCH] =?UTF-8?q?=E2=98=83=EF=B8=8F=20Testing=20some=20stuff?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- extensions/config/_base.py | 2 +- extensions/config/logging.py | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/extensions/config/_base.py b/extensions/config/_base.py index 4d9b347..7e7faf1 100644 --- a/extensions/config/_base.py +++ b/extensions/config/_base.py @@ -8,4 +8,4 @@ def __init__(self, bot: Korii): self.bot = bot self.description = "🔎 | For setting up Korii in your server." - group = commands.hybrid_group(name="config", description="Configure your guild's bot configuration.") \ No newline at end of file + group: commands.HybridGroup = commands.hybrid_group(name="config", description="Configure your guild's bot configuration.") diff --git a/extensions/config/logging.py b/extensions/config/logging.py index 0c80cfb..5ea4517 100644 --- a/extensions/config/logging.py +++ b/extensions/config/logging.py @@ -632,7 +632,7 @@ async def interaction_check(self, interaction: discord.Interaction) -> bool: class LoggingConfig(ConfigBase): - @ConfigBase.group.command(aliases=["logging", "logger"]) + @ConfigBase.group.group(aliases=["logging", "logger"]) @commands.max_concurrency(1, commands.BucketType.guild) async def log(self, ctx: CustomContext): """Base command to manage the logging events. @@ -661,7 +661,7 @@ async def log(self, ctx: CustomContext): ) await ctx.send(embed=embed) - @ConfigBase.group.command( + @log.command( name="enable", aliases=["set-default"], ) @@ -733,7 +733,7 @@ async def log_enable(self, ctx: CustomContext, channel: discord.TextChannel): f"Successfully set the logging channel to {channel.mention}" f"\n_see `{ctx.clean_prefix}help log` for more customization commands!_" ) - @ConfigBase.group.command(name="disable", aliases=["disable-logging"]) + @log.command(name="disable", aliases=["disable-logging"]) @commands.has_permissions(manage_guild=True) @commands.max_concurrency(1, commands.BucketType.guild) async def log_disable(self, ctx: CustomContext): @@ -778,7 +778,7 @@ async def log_disable(self, ctx: CustomContext): failed += 1 await ctx.send("✅ **Successfully unset all logging channels!**" f"\n_Deleted {success} webhooks. {failed} failed to delete._") - @ConfigBase.group.command(name="channels") + @log.command(name="channels") @commands.has_permissions(manage_guild=True) async def log_channels(self, ctx: CustomContext): """Shows this server's logging channels""" @@ -812,7 +812,7 @@ async def log_channels(self, ctx: CustomContext): embed.set_footer(text=f"{len(enabled)}/{len(set(loggings))} events enabled.") await ctx.send(embed=embed) - @ConfigBase.group.command(name="disable-event", aliases=["disable_event", "de"]) + @log.command(name="disable-event", aliases=["disable_event", "de"]) @commands.has_permissions(manage_guild=True) @commands.max_concurrency(1, commands.BucketType.guild) async def log_disable_event(self, ctx, *, event: ValidEventConverter): @@ -835,7 +835,7 @@ async def log_disable_event(self, ctx, *, event: ValidEventConverter): setattr(self.bot.guild_loggings[ctx.guild.id], event, False) await ctx.send(f'✅ **|** Successfully disabled **{str(event).replace("_", " ").title()} Events**') - @ConfigBase.group.command(name="enable-event", aliases=["enable_event", "ee"]) + @log.command(name="enable-event", aliases=["enable_event", "ee"]) @commands.has_permissions(manage_guild=True) @commands.max_concurrency(1, commands.BucketType.guild) async def log_enable_event(self, ctx: CustomContext, *, event: ValidEventConverter): @@ -858,7 +858,7 @@ async def log_enable_event(self, ctx: CustomContext, *, event: ValidEventConvert setattr(self.bot.guild_loggings[ctx.guild.id], event, True) await ctx.send(f'✅ **|** Successfully enabled **{str(event).replace("_", " ").title()} Events**') - @ConfigBase.group.command( + @log.command( name="edit-channels", aliases=["edit_channels", "ec"], ) @@ -873,7 +873,7 @@ async def log_edit_channels(self, ctx): await view.wait() @commands.max_concurrency(1, commands.BucketType.guild) - @ConfigBase.group.command(name="events", aliases=["all-events", "ae"]) + @log.command(name="events", aliases=["all-events", "ae"]) @commands.has_permissions(manage_guild=True) async def log_all_events(self, ctx: CustomContext): if ctx.guild.id not in self.bot.log_channels: @@ -884,7 +884,7 @@ async def log_all_events(self, ctx: CustomContext): await view.start() await view.wait() - @ConfigBase.group.command(name="auto-setup") + @log.command(name="auto-setup") @commands.has_permissions(administrator=True) @commands.max_concurrency(1, commands.BucketType.guild) @commands.bot_has_guild_permissions(manage_channels=True, manage_webhooks=True)