From a2043d67621cd04342c5e28ee437a4ab052bbad4 Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 21 Jul 2016 18:13:17 -0700 Subject: [PATCH] clientbot: make services clients manipulatable --- protocols/clientbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/clientbot.py b/protocols/clientbot.py index 4babc52..19370ef 100644 --- a/protocols/clientbot.py +++ b/protocols/clientbot.py @@ -77,7 +77,7 @@ class ClientbotWrapperProtocol(Protocol): ts = ts or int(time.time()) realname = realname or '' log.debug('(%s) spawnClient stub called, saving nick %s as PUID %s', self.irc.name, nick, uid) - u = self.irc.users[uid] = IrcUser(nick, ts, uid, ident=ident, host=host, realname=realname) + u = self.irc.users[uid] = IrcUser(nick, ts, uid, ident=ident, host=host, realname=realname, manipulatable=manipulatable) log.debug('(%s) self.irc.users: %s', self.irc.name, self.irc.users) self.irc.servers[server].users.add(uid) return u