diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index cb7bb24..ffd2e53 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -8,12 +8,14 @@ from sopel_SpiceBot_Core_Prerun import prerun @prerun() @plugin.command('pipea') def pipea(bot, trigger, comrun): + bot.say("%s" % trigger.raw) comrun.say = str(comrun.trigger_dict["trigger_str"]) @prerun() @plugin.command('pipeb') def pipeb(bot, trigger, comrun): + bot.say("%s" % trigger.raw) comrun.say = str(comrun.trigger_dict["trigger_str"]).upper()