From a2930acbad5bbde47e3d5d522f935ae719d99c9d Mon Sep 17 00:00:00 2001 From: Ske Date: Thu, 9 Jul 2020 15:11:04 +0200 Subject: [PATCH] Add more aliases to autoproxy off --- PluralKit.Bot/Commands/Autoproxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/Autoproxy.cs b/PluralKit.Bot/Commands/Autoproxy.cs index 645ab602..af91da11 100644 --- a/PluralKit.Bot/Commands/Autoproxy.cs +++ b/PluralKit.Bot/Commands/Autoproxy.cs @@ -22,7 +22,7 @@ namespace PluralKit.Bot { ctx.CheckSystem().CheckGuildContext(); - if (ctx.Match("off", "stop", "cancel", "no")) + if (ctx.Match("off", "stop", "cancel", "no", "disable", "remove")) await AutoproxyOff(ctx); else if (ctx.Match("latch", "last", "proxy", "stick", "sticky")) await AutoproxyLatch(ctx);