diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index 3fca81d..b801ba1 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -45,6 +45,7 @@ def sopel_action_commands(bot, trigger): @prerun_command() @plugin.command('testa') def commands_test_a(bot, trigger): + bot.say("test a") bot.say("test a: %s" % trigger.raw) @@ -53,4 +54,6 @@ def commands_test_a(bot, trigger): @plugin.command('testb') def commands_test_b(bot, trigger): + bot.say("test b") + bot.say("test b: %s" % trigger.raw)