This commit is contained in:
deathbybandaid 2022-02-12 11:57:52 -05:00
parent b056f1bce6
commit 2f577077c4

View File

@ -14,11 +14,11 @@ def prerun_command():
# Get && split for multiple commands
if "&&" in trigger.args[1]:
triggers = str(trigger.args[1]).split("&&")
triggers = trigger.args[1].split("&&")
else:
triggers = [str(trigger.args[1])]
triggers = [trigger.args[1]]
bot.say(triggers)
bot.say(str(triggers))
trigger_command_type = str("command")