From ab8b5e37868259caeae084c5a9a748def3405758 Mon Sep 17 00:00:00 2001 From: Ske Date: Thu, 5 Mar 2020 00:07:42 +0100 Subject: [PATCH] Fix setting proxies starting with `text` --- PluralKit.Bot/Commands/MemberProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/MemberProxy.cs b/PluralKit.Bot/Commands/MemberProxy.cs index 1bff110e..f01f3989 100644 --- a/PluralKit.Bot/Commands/MemberProxy.cs +++ b/PluralKit.Bot/Commands/MemberProxy.cs @@ -43,7 +43,7 @@ namespace PluralKit.Bot } // "Sub"command: clear flag - if (ctx.Match("clear", "purge", "clean", "removeall", "text") || ctx.MatchFlag("c", "clear")) + if (ctx.Match("clear", "purge", "clean", "removeall") || ctx.MatchFlag("c", "clear")) { // If we already have multiple tags, this would clear everything, so prompt that if (target.ProxyTags.Count > 1)