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"])