From a411b98f9a5be25261080ec6f22e22cb32a3c016 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Tue, 22 Feb 2022 15:20:36 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Runtime_Unmatched_Commands/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sopel_SpiceBot_Runtime_Unmatched_Commands/__init__.py diff --git a/sopel_SpiceBot_Runtime_Unmatched_Commands/__init__.py b/sopel_SpiceBot_Runtime_Unmatched_Commands/__init__.py new file mode 100644 index 0000000..74641b5 --- /dev/null +++ b/sopel_SpiceBot_Runtime_Unmatched_Commands/__init__.py @@ -0,0 +1,10 @@ + +from sopel import plugin + +from sopel_SpiceBot_Core_Prerun import prerun + + +@prerun() +@plugin.command('(.*)') +def rule_command(bot, trigger, comrun): + bot.say("%s" % trigger.raw)