From 467d058565308b24712a913c113b71d35a47a5b1 Mon Sep 17 00:00:00 2001 From: kittens Date: Wed, 22 Jul 2020 10:26:43 -0400 Subject: [PATCH] Remove "remove" keyword from MatchClear (#199) --- PluralKit.Bot/CommandSystem/ContextArgumentsExt.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/CommandSystem/ContextArgumentsExt.cs b/PluralKit.Bot/CommandSystem/ContextArgumentsExt.cs index bde44a5b..299b84a8 100644 --- a/PluralKit.Bot/CommandSystem/ContextArgumentsExt.cs +++ b/PluralKit.Bot/CommandSystem/ContextArgumentsExt.cs @@ -61,7 +61,7 @@ namespace PluralKit.Bot } public static bool MatchClear(this Context ctx) => - ctx.Match("clear", "remove", "reset") || ctx.MatchFlag("c", "clear"); + ctx.Match("clear", "reset") || ctx.MatchFlag("c", "clear"); public static async Task> ParseMemberList(this Context ctx, SystemId? restrictToSystem) { @@ -85,4 +85,4 @@ namespace PluralKit.Bot return members; } } -} \ No newline at end of file +}