From fa3ab927365264a050ecb2afdc46eb55795fc9ef Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sat, 12 Feb 2022 16:17:52 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_1/SBCore/commands/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py index c639521..4778b5b 100644 --- a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py +++ b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py @@ -14,7 +14,8 @@ class Commands(): for plugin_name, commands in self.bot.rules.get_all_commands(): for command in commands.values(): commands_list.append({ - "name": command.name + "name": command.name, + "aliases": command.aliases, }) return commands_list