spacecommands 3.2.2 → 3.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/CommandHandler.js
CHANGED
|
@@ -52,6 +52,9 @@ class CommandHandler {
|
|
|
52
52
|
if (disabledDefaultCommands.includes(fileName)) {
|
|
53
53
|
continue;
|
|
54
54
|
}
|
|
55
|
+
if (instance.debug) {
|
|
56
|
+
console.log(`SpaceCommands > Registering internal command: ${fileName}`);
|
|
57
|
+
}
|
|
55
58
|
await this.registerCommand(instance, client, file, fileName, true);
|
|
56
59
|
}
|
|
57
60
|
// Do not pass in TS here because this should always compiled to JS
|