"acceptsMultiple" should always return array
This commit is contained in:
parent
2444e9be43
commit
d231b7f5f4
|
@ -417,8 +417,8 @@ export class SlashCommandClosure {
|
|||
currentValue.push(value);
|
||||
args[name] = currentValue;
|
||||
} else {
|
||||
// If there is nothing in there, just assign it as singular value, until multiple values are found
|
||||
args[name] = value;
|
||||
// If there is nothing in there, we create an array with that singular value
|
||||
args[name] = [value];
|
||||
}
|
||||
} else {
|
||||
args[name] !== undefined && console.debug(`Named argument assigned multiple times: ${name}`);
|
||||
|
|
Loading…
Reference in New Issue