diff --git a/sopel_SpiceBot_Core_Prerun/dispatch_multi.py b/sopel_SpiceBot_Core_Prerun/dispatch_multi.py index c790257..b532ed7 100644 --- a/sopel_SpiceBot_Core_Prerun/dispatch_multi.py +++ b/sopel_SpiceBot_Core_Prerun/dispatch_multi.py @@ -16,7 +16,7 @@ def dispatch_multi(): bot.say("dispatch_multi") # 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 len(commands) > 1: diff --git a/sopel_SpiceBot_Core_Prerun/pipe_split.py b/sopel_SpiceBot_Core_Prerun/pipe_split.py index 42dc1f0..1fe34f9 100644 --- a/sopel_SpiceBot_Core_Prerun/pipe_split.py +++ b/sopel_SpiceBot_Core_Prerun/pipe_split.py @@ -17,7 +17,7 @@ def pipe_split(): bot.say("pipe_split") # 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)) function(bot, trigger, comrun, *args, **kwargs)