3e0bd3ee85
bot_channel.py
10 lines
406 B
Python
10 lines
406 B
Python
from src import ModuleManager, utils
|
|
|
|
@utils.export("serverset", {"setting": "bot-channel",
|
|
"help": "Set main channel"})
|
|
class Module(ModuleManager.BaseModule):
|
|
@utils.hook("received.numeric.001")
|
|
def do_join(self, event):
|
|
bot_channel = event["server"].get_setting("bot-channel",
|
|
self.bot.config.get("bot-channel", "#bitbot"))
|
|
event["server"].send_join(bot_channel)
|