From d215eff24e95bef7b9a30c619b77fc5fab5475d4 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sat, 12 Feb 2022 11:44:14 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Runtime_Commands/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index d95a225..32ce597 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -7,6 +7,12 @@ from sopel_SpiceBot_Core_1 import sb from sopel_SpiceBot_Core_Prerun import prerun_command +@prerun_command() +@plugin.command('test') +def commands_test(bot, trigger): + bot.say("%s" % trigger.raw) + + @prerun_command() @plugin.command('testa') def commands_test_a(bot, trigger):