diff --git a/providers/Sequelize.js b/providers/Sequelize.js index c3ecb675..11e15a47 100644 --- a/providers/Sequelize.js +++ b/providers/Sequelize.js @@ -174,7 +174,10 @@ class SequelizeProvider extends SettingProvider { } // Load all command/group statuses - for (const command of this.client.registry.commands.values()) this.setupGuildCommand(guild, command, settings); + for (const command of this.client.registry.commands.values()) { + console.log(command); + this.setupGuildCommand(guild, command, settings); + } for (const group of this.client.registry.groups.values()) this.setupGuildGroup(guild, group, settings); }