diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index 05c85fa..895fc32 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -22,7 +22,8 @@ def sb_test_commands(bot, trigger): def sopel_commands(bot, trigger): for x in sb.commands.sopel_commands: - bot.say(str(x)) + for y in x: + bot.say(str(y)) @prerun_nickname_command() @@ -30,7 +31,8 @@ def sopel_commands(bot, trigger): def sopel_nickname_commands(bot, trigger): for x in sb.commands.sopel_nickname_commands: - bot.say(str(x)) + for y in x: + bot.say(str(y)) @prerun_nickname_command() @@ -38,4 +40,5 @@ def sopel_nickname_commands(bot, trigger): def sopel_action_commands(bot, trigger): for x in sb.commands.sopel_action_commands: - bot.say(str(x)) + for y in x: + bot.say(str(y))