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)