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()