diff --git a/core/bot.py b/core/bot.py index 6bc0921..b001818 100644 --- a/core/bot.py +++ b/core/bot.py @@ -84,7 +84,7 @@ class IRCBot(IRCClient): def noticed(self, user, channel, msg): nick, ident, host = self.parsen(user) - userinfo.editUser(self.net, channel, nick, user) + #userinfo.editUser(self.net, channel, nick, user) count.event(self.net, "notice") keyword.actKeyword(user, channel, msg, self.nickname, "NOTICE", self.name) @@ -92,7 +92,7 @@ class IRCBot(IRCClient): def action(self, user, channel, msg): nick, ident, host = self.parsen(user) - userinfo.editUser(self.net, channel, nick, user) + #userinfo.editUser(self.net, channel, nick, user) count.event(self.net, "action") keyword.actKeyword(user, channel, msg, self.nickname, "ACTION", self.name)