test
This commit is contained in:
parent
8e45ef82ce
commit
1e2e8e3985
@ -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))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user