bitbot-3.11-fork/modules/bot_channel.py

9 lines
336 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):
event["server"].send_join(event["server"].get_setting("bot-channel",
"#bitbot"))