Allow Rune#0007 to bypass the ignored servers restriction

This commit is contained in:
runebaas 2020-10-09 17:10:49 +02:00
parent 41795aa13f
commit 28a5b9322e
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6

View file

@ -58,7 +58,8 @@ namespace Geekbot.Bot.Handlers
_ => 0 // DM Channel
};
if (IsIgnoredGuild(guildId, message.Author.Id)) return Task.CompletedTask;
// temp hack, will fix later
if (IsIgnoredGuild(guildId, message.Author.Id) || messageParam.Author.Id == 93061333972455424) return Task.CompletedTask;
var lowCaseMsg = message.ToString().ToLower();
if (ShouldHui(lowCaseMsg, guildId))