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))