Don't provision new user information on messages

This commit is contained in:
Mark Veidemanis 2018-10-21 19:21:53 +01:00
parent 3bf361134f
commit 1c3435d0d7
1 changed files with 2 additions and 2 deletions

View File

@ -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)