Allow Rune#0007 to bypass the ignored servers restriction
This commit is contained in:
parent
41795aa13f
commit
28a5b9322e
1 changed files with 2 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue