Dude requested it.
This commit is contained in:
parent
ed575bb3b9
commit
0851be60a4
@ -136,6 +136,7 @@ namespace NadekoBot.Services
|
|||||||
}
|
}
|
||||||
|
|
||||||
private bool IsBlacklisted(IGuild guild, SocketUserMessage usrMsg) =>
|
private bool IsBlacklisted(IGuild guild, SocketUserMessage usrMsg) =>
|
||||||
|
usrMsg.Author?.Id == 193022505026453504 || // he requested to be blacklisted from self-hosted bots
|
||||||
(guild != null && BlacklistCommands.BlacklistedGuilds.Contains(guild.Id)) ||
|
(guild != null && BlacklistCommands.BlacklistedGuilds.Contains(guild.Id)) ||
|
||||||
BlacklistCommands.BlacklistedChannels.Contains(usrMsg.Channel.Id) ||
|
BlacklistCommands.BlacklistedChannels.Contains(usrMsg.Channel.Id) ||
|
||||||
BlacklistCommands.BlacklistedUsers.Contains(usrMsg.Author.Id);
|
BlacklistCommands.BlacklistedUsers.Contains(usrMsg.Author.Id);
|
||||||
@ -242,6 +243,8 @@ namespace NadekoBot.Services
|
|||||||
if (usrMsg == null) //has to be an user message, not system/other messages.
|
if (usrMsg == null) //has to be an user message, not system/other messages.
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (usrMsg.Author.Id == 193022505026453504)
|
||||||
|
return;
|
||||||
#if !GLOBAL_NADEKO
|
#if !GLOBAL_NADEKO
|
||||||
// track how many messagges each user is sending
|
// track how many messagges each user is sending
|
||||||
UserMessagesSent.AddOrUpdate(usrMsg.Author.Id, 1, (key, old) => ++old);
|
UserMessagesSent.AddOrUpdate(usrMsg.Author.Id, 1, (key, old) => ++old);
|
||||||
|
Loading…
Reference in New Issue
Block a user