diff options
author | 2024-05-23 22:13:49 +0100 | |
---|---|---|
committer | 2024-05-23 22:13:49 +0100 | |
commit | a673a5cde524cfdab78f16081c7abb22f994073b (patch) | |
tree | 8ad6d51203e4a7a5fe8d34a60f84dca203851f6f | |
parent | fixup: remove british accent (diff) |
Allow listing alts for a user via the alts root alias (#3072)
-rw-r--r-- | bot/exts/moderation/alts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/moderation/alts.py b/bot/exts/moderation/alts.py index 4cab1534d..8fdf152a6 100644 --- a/bot/exts/moderation/alts.py +++ b/bot/exts/moderation/alts.py @@ -58,7 +58,7 @@ class AlternateAccounts(commands.Cog): ) return lines - @commands.group(name="association ", aliases=("alt", "alts", "assoc"), invoke_without_command=True) + @commands.group(name="association ", aliases=("alt", "assoc"), invoke_without_command=True) async def association_group( self, ctx: commands.Context, @@ -128,7 +128,7 @@ class AlternateAccounts(commands.Cog): return await ctx.send(f"✅ {user_1.mention} and {user_2.mention} are no longer marked as alts.") - @association_group.command(name="info", root_aliases=("alt-info",)) + @association_group.command(name="info", root_aliases=("alts",)) async def alt_info_command( self, ctx: commands.Context, |