diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index 1be0889..7d31f17 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -9,14 +9,14 @@ from sopel_SpiceBot_Core_Prerun import prerun @plugin.command('testoa') def commands_output_a(bot, trigger, comrun): comrun.say("this is test a") - comrun.say(str(comrun.trigger).lower()) + comrun.say(str(comrun.command["trigger_str"]).lower()) @prerun() @plugin.command('testob') def commands_output_b(bot, trigger, comrun): comrun.say("this is test b") - comrun.say(str(comrun.trigger).upper()) + comrun.say(str(comrun.command["trigger_str"]).upper()) @prerun()