diff --git a/src/structures/ApplicationCommand.js b/src/structures/ApplicationCommand.js index 2291dc3de..fe2698852 100644 --- a/src/structures/ApplicationCommand.js +++ b/src/structures/ApplicationCommand.js @@ -210,7 +210,7 @@ class ApplicationCommand extends Base { description: option.description, required: option.required, choices: option.choices, - options: option.options?.map(o => this.transformOption(o)), + options: option.options?.map(o => this.transformOption(o, received)), }; } }