From 9a6465314cb369486a99ee66dc04e8a67cb10c73 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Thu, 24 Feb 2022 08:27:59 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_Prerun/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sopel_SpiceBot_Core_Prerun/__init__.py b/sopel_SpiceBot_Core_Prerun/__init__.py index f9f1041..5b491f4 100644 --- a/sopel_SpiceBot_Core_Prerun/__init__.py +++ b/sopel_SpiceBot_Core_Prerun/__init__.py @@ -19,9 +19,11 @@ def prerun(rulematch=False): # Since there was more than one command, # we are going to redispatch commands # This will give sopel the appearance of recieving individual commands + bot.say(str(commands)) if len(commands) > 1: for trigger_dict in commands: bot.say("multi - dispatching %s %s" % (trigger_dict["trigger_command"], trigger_dict["trigger_str"])) + bot.say(str(trigger_dict)) sb.commands.dispatch(trigger_dict) return