From dce89069e9746843d5d39db086a2b0254df18b31 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Thu, 24 Feb 2022 10:38:27 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_Prerun/__init__.py | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/sopel_SpiceBot_Core_Prerun/__init__.py b/sopel_SpiceBot_Core_Prerun/__init__.py index 99a9375..37c11fd 100644 --- a/sopel_SpiceBot_Core_Prerun/__init__.py +++ b/sopel_SpiceBot_Core_Prerun/__init__.py @@ -18,21 +18,7 @@ def prerun(): # This will give sopel the appearance of recieving individual commands if comrun.is_multi_command: if len(comrun.commands) > 1: - - # Handling for first command in series - if comrun.is_rulematch: - print("is_rulematch") - if not comrun.is_real_command: - print("not is_real_command") - sb.commands.dispatch(comrun.command) - else: - print("is_real_command") - else: - print("not is_rulematch") - sb.commands.dispatch(comrun.command) - - # All other commands - for trigger_dict in comrun.commands[1:]: + for trigger_dict in comrun.commands: sb.commands.dispatch(trigger_dict) return