This commit is contained in:
deathbybandaid 2022-05-05 14:58:54 -04:00
parent 18e08f9643
commit 9986f5188f
2 changed files with 2 additions and 2 deletions

View File

@ -9,4 +9,4 @@ from sopel_SpiceBot_Core_Prerun import prerun
@plugin.nickname_command('lower') @plugin.nickname_command('lower')
@plugin.command('lower') @plugin.command('lower')
def lower(bot, trigger, comrun): def lower(bot, trigger, comrun):
comrun.say(str(comrun.trigger_dict["trigger_str"]).lower()) comrun.say(str(comrun.command["trigger_str"]).lower())

View File

@ -8,4 +8,4 @@ from sopel_SpiceBot_Core_Prerun import prerun
@prerun() @prerun()
@plugin.command('upper') @plugin.command('upper')
def upper(bot, trigger, comrun): def upper(bot, trigger, comrun):
comrun.say(str(comrun.trigger_dict["trigger_str"]).upper()) comrun.say(str(comrun.command["trigger_str"]).upper())