This commit is contained in:
deathbybandaid 2022-02-10 14:11:54 -05:00
parent 8e45ef82ce
commit 1e2e8e3985

View File

@ -22,7 +22,8 @@ def sb_test_commands(bot, trigger):
def sopel_commands(bot, trigger): def sopel_commands(bot, trigger):
for x in sb.commands.sopel_commands: for x in sb.commands.sopel_commands:
bot.say(str(x)) for y in x:
bot.say(str(y))
@prerun_nickname_command() @prerun_nickname_command()
@ -30,7 +31,8 @@ def sopel_commands(bot, trigger):
def sopel_nickname_commands(bot, trigger): def sopel_nickname_commands(bot, trigger):
for x in sb.commands.sopel_nickname_commands: for x in sb.commands.sopel_nickname_commands:
bot.say(str(x)) for y in x:
bot.say(str(y))
@prerun_nickname_command() @prerun_nickname_command()
@ -38,4 +40,5 @@ def sopel_nickname_commands(bot, trigger):
def sopel_action_commands(bot, trigger): def sopel_action_commands(bot, trigger):
for x in sb.commands.sopel_action_commands: for x in sb.commands.sopel_action_commands:
bot.say(str(x)) for y in x:
bot.say(str(y))