This commit is contained in:
deathbybandaid 2022-02-22 14:09:11 -05:00
parent 183d8da24c
commit f26a896dac

View File

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