From 90da14666620d274f92cead683136fc77d5d5a64 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sat, 12 Feb 2022 10:44:07 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Runtime_Commands/__init__.py | 3 +++ 1 file changed, 3 insertions(+) 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)