devland.js
Advanced tools
Comparing version 1.2.42 to 1.2.43
@@ -12,3 +12,3 @@ { | ||
"name": "devland.js", | ||
"version": "1.2.42", | ||
"version": "1.2.43", | ||
"description": "A powerful API wrapper for the Discord API designed for modern bots", | ||
@@ -15,0 +15,0 @@ "main": "index.js", |
@@ -113,4 +113,4 @@ const { parseEmoji } = require("../util") | ||
placeholder: this.placeholder, | ||
max_values: this.max_values || this.min_values ? this.min_values : 1, | ||
min_values: this.min_values || 0, | ||
max_values: typeof this.max_values === "undefined" ? typeof this.min_values === "undefined" ? undefined : this.min_values : this.max_values, | ||
min_values: this.min_values, | ||
custom_id: this.custom_id || this.customId, | ||
@@ -117,0 +117,0 @@ options: this.options, |
1715637