From 929b34e555b936ad2c858c3588a043292163b7ae Mon Sep 17 00:00:00 2001 From: Ske Date: Wed, 26 Aug 2020 22:01:42 +0200 Subject: [PATCH] Add 'g' as alias for system groups --- PluralKit.Bot/Commands/CommandTree.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/CommandTree.cs b/PluralKit.Bot/Commands/CommandTree.cs index 1ecd90a8..19dcf643 100644 --- a/PluralKit.Bot/Commands/CommandTree.cs +++ b/PluralKit.Bot/Commands/CommandTree.cs @@ -240,7 +240,7 @@ namespace PluralKit.Bot await ctx.Execute(SystemPing, m => m.SystemPing(ctx)); else if (ctx.Match("commands", "help")) await PrintCommandList(ctx, "systems", SystemCommands); - else if (ctx.Match("groups", "gs")) + else if (ctx.Match("groups", "gs", "g")) await ctx.Execute(GroupList, g => g.ListSystemGroups(ctx, null)); else if (!ctx.HasNext()) // Bare command await ctx.Execute(SystemInfo, m => m.Query(ctx, ctx.System));