This commit is contained in:
deathbybandaid 2022-02-22 11:34:22 -05:00
parent 5425fb5c4f
commit 753c55fd50
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ def dispatch_multi():
bot.say("dispatch_multi") bot.say("dispatch_multi")
# Get list of trigger command(s) # Get list of trigger command(s)
commands = sb.commands.get_commands_split(bot, trigger, "&&") commands = sb.commands.get_commands_split(trigger, "&&")
# If more than 1 trigger command, dispatch # If more than 1 trigger command, dispatch
if len(commands) > 1: if len(commands) > 1:

View File

@ -17,7 +17,7 @@ def pipe_split():
bot.say("pipe_split") bot.say("pipe_split")
# Get list of trigger command(s) # Get list of trigger command(s)
pipes = sb.commands.get_commands_split(bot, trigger, "|") pipes = sb.commands.get_commands_split(trigger, "|")
bot.say(str(pipes)) bot.say(str(pipes))
function(bot, trigger, comrun, *args, **kwargs) function(bot, trigger, comrun, *args, **kwargs)