reciple 4.1.0 → 4.1.2
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.
|
@@ -249,7 +249,7 @@ class RecipleClient extends discord_js_1.Client {
|
|
|
249
249
|
slashCommandExecute(interaction) {
|
|
250
250
|
var _a, _b;
|
|
251
251
|
return __awaiter(this, void 0, void 0, function* () {
|
|
252
|
-
if (!interaction ||
|
|
252
|
+
if (!interaction || !interaction.isChatInputCommand() || !this.isReady())
|
|
253
253
|
return;
|
|
254
254
|
const command = this.findCommand(interaction.commandName, builders_1.CommandBuilderType.SlashCommand);
|
|
255
255
|
if (!command)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reciple",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"bin": "bin/bin.js",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
6
|
"main": "bin/index.js",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/node": "^18.6.1",
|
|
60
60
|
"@types/semver": "^7.3.10",
|
|
61
|
-
"discord.js": "^14.
|
|
61
|
+
"discord.js": "^14.1.2",
|
|
62
62
|
"rimraf": "^3.0.2",
|
|
63
63
|
"typedoc": "^0.23.9",
|
|
64
64
|
"typedoc-plugin-discord-types": "^1.0.2",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"typescript": "^4.7.4"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"discord.js": "^14.
|
|
70
|
+
"discord.js": "^14.1.2"
|
|
71
71
|
},
|
|
72
72
|
"packageManager": "yarn@3.2.2"
|
|
73
73
|
}
|