diff options
author | makefu <github@syntax-fehler.de> | 2014-04-15 13:51:08 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2014-04-15 13:51:08 +0200 |
commit | 11ca12e6b15eb044a9de9da5ae1f005017960754 (patch) | |
tree | d3aa6729a223f4f8688aed7ba7407182d4a7400d /Reaktor | |
parent | 5ddec8ce80976ce02f1302d80aa155bb2755b4f1 (diff) | |
parent | a2de1edca2b3bdfb437c295a446817ef3a42a123 (diff) |
Merge branch 'master' of ssh://github.com/krebscode/painload
Diffstat (limited to 'Reaktor')
-rw-r--r-- | Reaktor/IRC/ircasy.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Reaktor/IRC/ircasy.py b/Reaktor/IRC/ircasy.py index 068cd467..9a7f44f3 100644 --- a/Reaktor/IRC/ircasy.py +++ b/Reaktor/IRC/ircasy.py @@ -113,6 +113,9 @@ class asybot(asychat): elif command == 'KICK': self.on_kick(prefix, command, params, rest) + elif command == 'JOIN': + self.on_join(prefix, command, params, rest) + elif command == '433': # ERR_NICKNAMEINUSE, retry with another name self.on_nickinuse(prefix, command, params, rest) @@ -169,6 +172,9 @@ class asybot(asychat): for chan in params[:-1]: self.channels.remove(chan) + def on_join(self, prefix, command, params, rest): + pass + def on_privmsg(self, prefix, command, params, rest): pass |