This commit is contained in:
deathbybandaid 2022-02-22 13:15:34 -05:00
parent f283334d5b
commit 30f4288655

View File

@ -8,12 +8,14 @@ from sopel_SpiceBot_Core_Prerun import prerun
@prerun() @prerun()
@plugin.command('pipea') @plugin.command('pipea')
def pipea(bot, trigger, comrun): def pipea(bot, trigger, comrun):
bot.say("%s" % trigger.raw)
comrun.say = str(comrun.trigger_dict["trigger_str"]) comrun.say = str(comrun.trigger_dict["trigger_str"])
@prerun() @prerun()
@plugin.command('pipeb') @plugin.command('pipeb')
def pipeb(bot, trigger, comrun): def pipeb(bot, trigger, comrun):
bot.say("%s" % trigger.raw)
comrun.say = str(comrun.trigger_dict["trigger_str"]).upper() comrun.say = str(comrun.trigger_dict["trigger_str"]).upper()