8c6ab17e57
facilitate things like !set and !channelset without using the events system
8 lines
219 B
Python
8 lines
219 B
Python
|
|
|
|
class Module(object):
|
|
def __init__(self, bot, events, exports):
|
|
events.on("received").on("numeric").on("001").hook(self.do_join)
|
|
|
|
def do_join(self, event):
|
|
event["server"].send_join("#bitbot")
|