diff --git a/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py b/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py index 218be9a..cc48d22 100644 --- a/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py @@ -19,7 +19,10 @@ def sopel_commands(bot, trigger): bot.say("testing commands") - bot.say(str(bot.rules._rules.values())) + for x in sb.commands.sopel_commands: + bot.say(str(x)) + for y in x: + bot.say(str(y)) @prerun() @@ -40,5 +43,6 @@ def sopel_action_commands(bot, trigger): bot.say("testing action_commands") for x in sb.commands.sopel_action_commands: + bot.say(str(x)) for y in x: bot.say(str(y))