diff --git a/PluralKit.Bot/CommandMeta/CommandTree.cs b/PluralKit.Bot/CommandMeta/CommandTree.cs index 3c620e63..8d111ef4 100644 --- a/PluralKit.Bot/CommandMeta/CommandTree.cs +++ b/PluralKit.Bot/CommandMeta/CommandTree.cs @@ -6,7 +6,7 @@ public partial class CommandTree { public Task ExecuteCommand(Context ctx) { - if (ctx.Match("system", "s")) + if (ctx.Match("system", "s", "account", "acc")) return HandleSystemCommand(ctx); if (ctx.Match("member", "m")) return HandleMemberCommand(ctx); @@ -503,6 +503,8 @@ public partial class CommandTree case "system": case "systems": case "s": + case "account": + case "acc": await PrintCommandList(ctx, "systems", SystemCommands); break; case "member":