test
This commit is contained in:
parent
b056f1bce6
commit
2f577077c4
@ -14,11 +14,11 @@ def prerun_command():
|
|||||||
|
|
||||||
# Get && split for multiple commands
|
# Get && split for multiple commands
|
||||||
if "&&" in trigger.args[1]:
|
if "&&" in trigger.args[1]:
|
||||||
triggers = str(trigger.args[1]).split("&&")
|
triggers = trigger.args[1].split("&&")
|
||||||
else:
|
else:
|
||||||
triggers = [str(trigger.args[1])]
|
triggers = [trigger.args[1]]
|
||||||
|
|
||||||
bot.say(triggers)
|
bot.say(str(triggers))
|
||||||
|
|
||||||
trigger_command_type = str("command")
|
trigger_command_type = str("command")
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user