From 4046df96022f8e7a64749998d67ac8578190aa7c Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Wed, 23 Feb 2022 14:30:31 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_Prerun/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sopel_SpiceBot_Core_Prerun/__init__.py b/sopel_SpiceBot_Core_Prerun/__init__.py index 22bebb7..2aefebe 100644 --- a/sopel_SpiceBot_Core_Prerun/__init__.py +++ b/sopel_SpiceBot_Core_Prerun/__init__.py @@ -30,7 +30,7 @@ def prerun(rulematch=False): # If the original trigger is not the same after && split # so we will now redispatch to help get the correct function passed trigger_command = sb.commands.get_command_from_trigger(trigger) - if trigger_command != commands[0]["trigger_command"]: + if trigger_command != commands[0]["trigger_command"] and "&&" in trigger.args[1]: sb.commands.dispatch(commands[0]) return @@ -39,7 +39,7 @@ def prerun(rulematch=False): # Validate | split trigger_command = sb.commands.get_command_from_trigger(trigger) - if trigger_command != commands[0]["trigger_command"]: + if trigger_command != commands[0]["trigger_command"] and "|" in trigger.args[1]: trigger_dict = rebuild_pipes(commands) sb.commands.dispatch(trigger_dict) return