This commit is contained in:
deathbybandaid 2022-02-12 18:45:17 -05:00
parent 67b779a492
commit d6db548e79

View File

@ -80,8 +80,11 @@ def get_commands(bot, trigger):
elif command_type == "action_command": elif command_type == "action_command":
commands_list = sb.commands.valid_sopel_action_commands commands_list = sb.commands.valid_sopel_action_commands
bot.say(command_type)
if trigger_command in commands_list: if trigger_command in commands_list:
found.append(command_type) found.append(command_type)
bot.say(found)
if len(found): if len(found):
trigger_type = found[0] trigger_type = found[0]