fix the rest of the conditionals

This commit is contained in:
spiral
2021-07-08 12:45:59 -04:00
parent a8e6a53404
commit afd8983abe
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ namespace PluralKit.Bot
}
// Proxied messages only exist in guild text channels, so skip checking if we're elsewhere
if (DiscordUtils.IsValidGuildChannel(channel)) return;
if (!DiscordUtils.IsValidGuildChannel(channel)) return;
// Ignore reactions from bots (we can't DM them anyway)
if (user.Bot) return;