From 9d86ab9fe8c02923a8a5503f42a81a863dae4a30 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Thu, 24 Feb 2022 11:24:10 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_Prerun/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sopel_SpiceBot_Core_Prerun/__init__.py b/sopel_SpiceBot_Core_Prerun/__init__.py index 9f03e9f..272c6d3 100644 --- a/sopel_SpiceBot_Core_Prerun/__init__.py +++ b/sopel_SpiceBot_Core_Prerun/__init__.py @@ -18,10 +18,13 @@ def prerun(): # This will give sopel the appearance of recieving individual commands if comrun.is_multi_command: if not comrun.is_rulematch: + print("not a rule match") sb.commands.dispatch(comrun.command) elif comrun.is_rulematch: - # if comrun.is_real_command: + print("is a rule match") + # if not comrun.is_real_command: if comrun.has_command_been_sanitized: + print("has been sanitized") sb.commands.dispatch(comrun.command) for trigger_dict in comrun.commands[1:]: sb.commands.dispatch(trigger_dict)