From a475a519109d1d03a4a1aa4ee844c9621ae6226e Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 15 Jan 2024 14:04:51 +0000 Subject: [PATCH] fix(aurora): fixed command decorator --- aurora/configuration/commands.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/aurora/configuration/commands.py b/aurora/configuration/commands.py index 8a9c37a..aa38832 100644 --- a/aurora/configuration/commands.py +++ b/aurora/configuration/commands.py @@ -14,9 +14,12 @@ class Configuration(Mixin): async def aurora(self, ctx: commands.Context): """Settings and miscellaneous commands for Aurora.""" - @aurora.command(name="settings", aliases=["config", "options", "set"]) + @aurora.group(autohelp=True, name="settings", aliases=["config", "options", "set"]) async def aurora_settings(self, ctx: commands.Context): - """View Aurora configuration settings.""" + """Configure Aurora's settings.""" + + @aurora_settings.command(name="core") + async def aurora_settings_core(self, ctx: commands.Context): await ctx.send(embed=await embed(ctx)) @aurora_settings.command(name="addrole", aliases=["removerole"])