9 lines
226 B
Python
9 lines
226 B
Python
|
|
|
|
class Module(object):
|
|
def __init__(self, bot):
|
|
bot.events.on("received").on("invite").hook(
|
|
self.on_invite)
|
|
|
|
def on_invite(self, event):
|
|
event["server"].send_join(event["target_channel"])
|