This commit is contained in:
Dragon Fire
2024-03-21 23:32:49 -04:00
parent 00ea78ddb4
commit 82d77aaa77
2 changed files with 1 additions and 5 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ module.exports = class Argument {
constructor(client, options) {
Object.defineProperty(this, 'client', { value: client });
this.key = options.key.toLowerCase();
this.key = options.key;
this.label = typeof options.label === 'undefined' ? null : options.label;
this.typeID = options.type.toLowerCase();
this.min = typeof options.min === 'undefined' ? null : options.min;