This commit is contained in:
deathbybandaid 2022-02-12 16:02:04 -05:00
parent 23812e8ce1
commit 87c1c92237

View File

@ -22,6 +22,11 @@ def sb_test_command_groups(bot, trigger):
bot._rules_manager.get_all_nick_commands(),
)
for plugin_name, commands in plugin_commands:
for command in commands.values():
bot.say(str(command.name))
return
commands = (
(command, command.get_doc(), command.get_usages())
for plugin_name, commands in plugin_commands