aboutsummaryrefslogtreecommitdiff
path: root/modules/bot_channel.py
blob: d7c7e8b2eb33aef78fe75bf251ad5aa56433edb6 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#--depends-on config

from src import ModuleManager, utils

@utils.export("serverset", {"setting": "bot-channel",
    "help": "Set main channel", "example": "#bitbot"})
class Module(ModuleManager.BaseModule):
    @utils.hook("received.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)