Ready for some fun?

This commit is contained in:
Daniel Odendahl Jr
2017-04-27 12:41:18 +00:00
parent b3ec136124
commit 20a40a0a7a
+4 -1
View File
@@ -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);
}