From d6231c4319684f7a9f9d9720ff54a8e0a282ade5 Mon Sep 17 00:00:00 2001 From: rladenson Date: Mon, 26 Aug 2024 13:51:27 -0600 Subject: [PATCH] alias: add status as an alias for pk;stats --- PluralKit.Bot/CommandMeta/CommandTree.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/CommandMeta/CommandTree.cs b/PluralKit.Bot/CommandMeta/CommandTree.cs index 762f7d86..a9a4b017 100644 --- a/PluralKit.Bot/CommandMeta/CommandTree.cs +++ b/PluralKit.Bot/CommandMeta/CommandTree.cs @@ -91,7 +91,7 @@ public partial class CommandTree if (ctx.Match("rool")) return ctx.Execute(null, m => m.Rool(ctx)); if (ctx.Match("sus")) return ctx.Execute(null, m => m.Sus(ctx)); if (ctx.Match("error")) return ctx.Execute(null, m => m.Error(ctx)); - if (ctx.Match("stats")) return ctx.Execute(null, m => m.Stats(ctx)); + if (ctx.Match("stats", "status")) return ctx.Execute(null, m => m.Stats(ctx)); if (ctx.Match("permcheck")) return ctx.Execute(PermCheck, m => m.PermCheckGuild(ctx)); if (ctx.Match("proxycheck"))