From 17f9ea1f300033fa7d41433f8edc8c1cc2f4d5ff Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Thu, 24 Feb 2022 10:35:35 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_Prerun/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sopel_SpiceBot_Core_Prerun/__init__.py b/sopel_SpiceBot_Core_Prerun/__init__.py index 8b9a9d1..99a9375 100644 --- a/sopel_SpiceBot_Core_Prerun/__init__.py +++ b/sopel_SpiceBot_Core_Prerun/__init__.py @@ -21,9 +21,14 @@ def prerun(): # 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