diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index 63b2093..05c85fa 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -21,18 +21,21 @@ def sb_test_commands(bot, trigger): @plugin.nickname_command('commands') def sopel_commands(bot, trigger): - bot.say(str(sb.commands.sopel_commands)) + for x in sb.commands.sopel_commands: + bot.say(str(x)) @prerun_nickname_command() @plugin.nickname_command('nickname_commands') def sopel_nickname_commands(bot, trigger): - bot.say(str(sb.commands.sopel_nickname_commands)) + for x in sb.commands.sopel_nickname_commands: + bot.say(str(x)) @prerun_nickname_command() @plugin.nickname_command('action_commands') def sopel_action_commands(bot, trigger): - bot.say(str(sb.commands.sopel_action_commands)) + for x in sb.commands.sopel_action_commands: + bot.say(str(x))