don't respond to !botlist automatically
This commit is contained in:
parent
d0d6fc967b
commit
718a026beb
1 changed files with 4 additions and 1 deletions
|
@ -3,8 +3,11 @@ from src import ModuleManager, utils
|
|||
COMMANDS = ["!botlist", "!rollcall"]
|
||||
MESSAGE = "Hi! I'm BitBot (https://git.io/bitbot) "
|
||||
|
||||
@utils.export("botset", utils.BoolSetting("botlist",
|
||||
"Whether or not I should respond to !botlist commands"))
|
||||
class Module(ModuleManager.BaseModule):
|
||||
@utils.hook("received.message.channel")
|
||||
def channel_message(self, event):
|
||||
if event["message"].strip() in COMMANDS:
|
||||
if (event["message"].strip() in COMMANDS and
|
||||
self.bot.get_setting("botlist", False)):
|
||||
event["channel"].send_message(MESSAGE)
|
||||
|
|
Loading…
Reference in a new issue