Skip to content

Commit

Permalink
Fix more errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tookender committed Aug 25, 2024
1 parent 121b29b commit c995fdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion extensions/config/levelling.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,6 @@ async def update_message(interaction: Interaction, edit: Optional[bool] = True):


class LevellingConfig(ConfigBase):
@commands.hybrid_command(description="Configure your guild's levelling system.")
@commands.hybrid_command(description="Configure your guild's levelling system.", aliases=["level_config", "levelling"])
async def levelling_config(self, interaction: Interaction):
return await update_message(interaction, edit=False)
4 changes: 2 additions & 2 deletions extensions/config/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,9 +632,9 @@ async def interaction_check(self, interaction: discord.Interaction) -> bool:


class LoggingConfig(ConfigBase):
@commands.hybrid_group(aliases=["logging", "logger"])
@commands.hybrid_group(name="logging_config", aliases=["log_config", "logger", "logging", "log", "logs"])
@commands.max_concurrency(1, commands.BucketType.guild)
async def logging_config(self, ctx: CustomContext):
async def log(self, ctx: CustomContext):
"""Base command to manage the logging events.
Run this command without sub-commands to show more detailed information on the logging module"""
Expand Down

0 comments on commit c995fdc

Please sign in to comment.