diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index 7d31f17..3bc265f 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -5,20 +5,6 @@ from sopel import plugin from sopel_SpiceBot_Core_Prerun import prerun -@prerun() -@plugin.command('testoa') -def commands_output_a(bot, trigger, comrun): - comrun.say("this is test a") - 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.command["trigger_str"]).upper()) - - @prerun() @plugin.command('test', "testnew") def commands_test(bot, trigger, comrun): diff --git a/spicebot_command_lower/__init__.py b/spicebot_command_lower/__init__.py index d657707..de46ce6 100644 --- a/spicebot_command_lower/__init__.py +++ b/spicebot_command_lower/__init__.py @@ -9,4 +9,4 @@ from sopel_SpiceBot_Core_Prerun import prerun @plugin.nickname_command('lower') @plugin.command('lower') def lower(bot, trigger, comrun): - comrun.say = str(comrun.trigger_dict["trigger_str"]).lower() + comrun.say(str(comrun.trigger_dict["trigger_str"]).lower()) diff --git a/spicebot_command_upper/__init__.py b/spicebot_command_upper/__init__.py index 42c2642..c66946a 100644 --- a/spicebot_command_upper/__init__.py +++ b/spicebot_command_upper/__init__.py @@ -8,4 +8,4 @@ from sopel_SpiceBot_Core_Prerun import prerun @prerun() @plugin.command('upper') def upper(bot, trigger, comrun): - comrun.say = str(comrun.trigger_dict["trigger_str"]).upper() + comrun.say(str(comrun.trigger_dict["trigger_str"]).upper())