commandkit 0.1.6-dev.20231209101128 → 0.1.6-dev.20231209110056
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/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -485,14 +485,14 @@ var CommandHandler = class {
|
|
|
485
485
|
if (devOnlyCommands.length && !this.#data.devGuildIds.length) {
|
|
486
486
|
console.log(
|
|
487
487
|
colors_default.yellow(
|
|
488
|
-
'\u2139\uFE0F Warning: You have commands marked as "devOnly" but "devGuildIds"
|
|
488
|
+
'\u2139\uFE0F Warning: You have commands marked as "devOnly", but "devGuildIds" have not been set.'
|
|
489
489
|
)
|
|
490
490
|
);
|
|
491
491
|
}
|
|
492
492
|
if (devOnlyCommands.length && !this.#data.devUserIds.length && !this.#data.devRoleIds.length) {
|
|
493
493
|
console.log(
|
|
494
494
|
colors_default.yellow(
|
|
495
|
-
'\u2139\uFE0F Warning: You have commands marked as "devOnly" but
|
|
495
|
+
'\u2139\uFE0F Warning: You have commands marked as "devOnly", but "devUserIds" or "devRoleIds" have not been set.'
|
|
496
496
|
)
|
|
497
497
|
);
|
|
498
498
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -452,14 +452,14 @@ var CommandHandler = class {
|
|
|
452
452
|
if (devOnlyCommands.length && !this.#data.devGuildIds.length) {
|
|
453
453
|
console.log(
|
|
454
454
|
colors_default.yellow(
|
|
455
|
-
'\u2139\uFE0F Warning: You have commands marked as "devOnly" but "devGuildIds"
|
|
455
|
+
'\u2139\uFE0F Warning: You have commands marked as "devOnly", but "devGuildIds" have not been set.'
|
|
456
456
|
)
|
|
457
457
|
);
|
|
458
458
|
}
|
|
459
459
|
if (devOnlyCommands.length && !this.#data.devUserIds.length && !this.#data.devRoleIds.length) {
|
|
460
460
|
console.log(
|
|
461
461
|
colors_default.yellow(
|
|
462
|
-
'\u2139\uFE0F Warning: You have commands marked as "devOnly" but
|
|
462
|
+
'\u2139\uFE0F Warning: You have commands marked as "devOnly", but "devUserIds" or "devRoleIds" have not been set.'
|
|
463
463
|
)
|
|
464
464
|
);
|
|
465
465
|
}
|
package/package.json
CHANGED