diff --git a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py index 016ca3b..b8fa678 100644 --- a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py +++ b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py @@ -41,6 +41,9 @@ class Commands(): print(command_dict) found.append(command_dict["name"]) found.extend(command_dict["aliases"]) + for plugin_name, commands in self.bot.rules.get_all_commands(): + print(plugin_name) + print(commands) return found @property