From 3adf05b8960229b779733ef06f04ab940517c55d Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Wed, 23 Feb 2022 15:03:00 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Runtime_Commands/__init__.py | 2 ++ 1 file changed, 2 insertions(+) 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')