aboutsummaryrefslogtreecommitdiff
path: root/modules/bot_channel.py
blob: 32f3f1fc8edcee84ea487e2b03bcb8725b0c294e (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", utils.Setting("bot-channel",
    "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)