From a673a5cde524cfdab78f16081c7abb22f994073b Mon Sep 17 00:00:00 2001 From: ChrisJL Date: Thu, 23 May 2024 22:13:49 +0100 Subject: Allow listing alts for a user via the alts root alias (#3072) --- bot/exts/moderation/alts.py | 4 ++-- 1 file 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, -- cgit v1.2.3