diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index c0e636d..3bc265f 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -15,12 +15,14 @@ def commands_test(bot, trigger, comrun): @plugin.command('testa') def commands_test_a(bot, trigger, comrun): bot.say("test a") + bot.say("%s" % trigger.raw) @prerun() @plugin.command('testb') def commands_test_b(bot, trigger, comrun): bot.say("test b") + bot.say("%s" % trigger.raw) @plugin.command('testc')