9 lines
188 B
Python
9 lines
188 B
Python
|
|
||
|
|
||
|
class Module(object):
|
||
|
def __init__(self, bot):
|
||
|
bot.events.on("received").on("numeric").on("001").hook(self.do_join)
|
||
|
|
||
|
def do_join(self, event):
|
||
|
event["server"].send_join("#bitbot")
|