From 21504e5ff0bd16d086e3cee2c12477f7d43cf04a Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Fri, 6 May 2022 09:32:01 -0400 Subject: [PATCH] test --- sopel_SpiceBot_Core_1/SBCore/commands/__init__.py | 3 +++ 1 file changed, 3 insertions(+) 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