From bdb6019cb950c9a80d77f8655db4118462138a51 Mon Sep 17 00:00:00 2001 From: Fennel Date: Fri, 24 Apr 2020 17:22:33 -0400 Subject: [PATCH] Fix MatchChannel --- PluralKit.Bot/CommandSystem/Context.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/CommandSystem/Context.cs b/PluralKit.Bot/CommandSystem/Context.cs index 17e18637..c4f7bae2 100644 --- a/PluralKit.Bot/CommandSystem/Context.cs +++ b/PluralKit.Bot/CommandSystem/Context.cs @@ -288,7 +288,7 @@ namespace PluralKit.Bot if (discordChannel.Type != ChannelType.Text) return null; PopArgument(); - return null;// return textChannel; + return discordChannel; } } } \ No newline at end of file