From 3e157493aea1901d0ae8133bcf4945a81ed9310f Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sat, 12 Feb 2022 10:46:12 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Runtime_Commands/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index b801ba1..8c4a430 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -21,12 +21,15 @@ def sb_test_commands(bot, trigger): @plugin.nickname_command('commands') def sopel_commands(bot, trigger): + bot.say("testing commands") + bot.say(str(bot.rules._rules.values())) @prerun_nickname_command() @plugin.nickname_command('nickname_commands') def sopel_nickname_commands(bot, trigger): + bot.say("testing nickname_commands") for x in sb.commands.sopel_nickname_commands: for y in x: @@ -37,6 +40,8 @@ def sopel_nickname_commands(bot, trigger): @plugin.nickname_command('action_commands') def sopel_action_commands(bot, trigger): + bot.say("testing action_commands") + for x in sb.commands.sopel_action_commands: for y in x: bot.say(str(y))