aboutsummaryrefslogtreecommitdiffstats
path: root/IRC
diff options
context:
space:
mode:
authorlassulus <lassulus@googlemail.com>2014-01-14 00:27:20 +0100
committerlassulus <lassulus@googlemail.com>2014-01-14 00:27:20 +0100
commit5465ea3a6af4ea88dcfa3d15ca241705c82c041a (patch)
tree4a7a001946b0fde24f66b8d1906599b8ae55def2 /IRC
parent83f339a4a17e80e06245878ddfdd095bbc2c69dd (diff)
reaktor: ircasy invite handler
Diffstat (limited to 'IRC')
-rw-r--r--IRC/ircasy.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/IRC/ircasy.py b/IRC/ircasy.py
index 4b800d4..ca607f2 100644
--- a/IRC/ircasy.py
+++ b/IRC/ircasy.py
@@ -101,6 +101,9 @@ class asybot(asychat):
elif command == 'PRIVMSG':
self.on_privmsg(prefix, command, params, rest)
+ elif command == 'INVITE':
+ self.on_invite(prefix, command, params, rest)
+
elif command == '433':
# ERR_NICKNAMEINUSE, retry with another name
_, nickname, int, _ = split('^.*[^0-9]([0-9]+)$', self.nickname) \
@@ -156,3 +159,6 @@ class asybot(asychat):
def on_welcome(self, prefix, command, params, rest):
self.push('JOIN %s' % ','.join(self.channels))
+
+ def on_invite(self, prefix, command, params, rest):
+ pass