This commit is contained in:
deathbybandaid 2022-02-22 16:27:07 -05:00
parent 460482e680
commit 120372c8cf

View File

@ -14,13 +14,12 @@ def rule_match():
returnfunc = True returnfunc = True
if comrun.rulematch: if comrun.rulematch:
comrun.trigger.dict["trigger_type"]
if comrun.trigger.dict["trigger_type"] == "command": if comrun.trigger_dict["trigger_type"] == "command":
commands_list = sb.commands.valid_sopel_commands commands_list = sb.commands.valid_sopel_commands
elif comrun.trigger.dict["trigger_type"] == "nickname_command": elif comrun.trigger_dict["trigger_type"] == "nickname_command":
commands_list = sb.commands.valid_sopel_nickname_commands commands_list = sb.commands.valid_sopel_nickname_commands
elif comrun.trigger.dict["trigger_type"] == "action_command": elif comrun.trigger_dict["trigger_type"] == "action_command":
commands_list = sb.commands.valid_sopel_action_commands commands_list = sb.commands.valid_sopel_action_commands
if comrun.trigger_dict["trigger_command"] in commands_list: if comrun.trigger_dict["trigger_command"] in commands_list: