forked from blizzthewolf/SeaCogs
fix(aurora): fixed command decorator
This commit is contained in:
parent
e28e32d0c0
commit
a475a51910
1 changed files with 5 additions and 2 deletions
|
@ -14,9 +14,12 @@ class Configuration(Mixin):
|
||||||
async def aurora(self, ctx: commands.Context):
|
async def aurora(self, ctx: commands.Context):
|
||||||
"""Settings and miscellaneous commands for Aurora."""
|
"""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):
|
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))
|
await ctx.send(embed=await embed(ctx))
|
||||||
|
|
||||||
@aurora_settings.command(name="addrole", aliases=["removerole"])
|
@aurora_settings.command(name="addrole", aliases=["removerole"])
|
||||||
|
|
Loading…
Reference in a new issue