From db80b10ec52edd962f07aac5eafb6dd935383521 Mon Sep 17 00:00:00 2001 From: spiral Date: Sun, 22 Nov 2020 09:47:19 -0500 Subject: [PATCH] Add autoproxy commands in pk;commands --- PluralKit.Bot/Commands/CommandTree.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/CommandTree.cs b/PluralKit.Bot/Commands/CommandTree.cs index ba5e5d96..9b0483be 100644 --- a/PluralKit.Bot/Commands/CommandTree.cs +++ b/PluralKit.Bot/Commands/CommandTree.cs @@ -453,7 +453,10 @@ namespace PluralKit.Bot case "bl": await PrintCommandList(ctx, "channel blacklisting", BlacklistCommands); break; - // case "autoproxy": (add this when #232 is merged) + case "autoproxy": + case "ap": + await PrintCommandList(ctx, "autoproxy", AutoproxyCommands); + break; // todo: are there any commands that still need to be added? default: await ctx.Reply("For the full list of commands, see the website: ");