From c78d3c319810353e877ed6e4fc8461cc1411f0a1 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Tue, 22 Feb 2022 13:21:21 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Runtime_Commands/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index ffd2e53..3d1adfd 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -9,6 +9,7 @@ from sopel_SpiceBot_Core_Prerun import prerun @plugin.command('pipea') def pipea(bot, trigger, comrun): bot.say("%s" % trigger.raw) + bot.say(str(comrun.trigger_dict)) comrun.say = str(comrun.trigger_dict["trigger_str"]) @@ -16,6 +17,7 @@ def pipea(bot, trigger, comrun): @plugin.command('pipeb') def pipeb(bot, trigger, comrun): bot.say("%s" % trigger.raw) + bot.say(str(comrun.trigger_dict)) comrun.say = str(comrun.trigger_dict["trigger_str"]).upper()