diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index 8c4a430..e251a14 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -62,3 +62,10 @@ def commands_test_b(bot, trigger): bot.say("test b") bot.say("test b: %s" % trigger.raw) + + +@plugin.command('testc') +def commands_test_c(bot, trigger): + bot.say("test c") + + bot.say("test c: %s" % trigger.raw)