Showing
1 changed file
with
5 additions
and
1 deletions
... | @@ -10,7 +10,11 @@ module.exports ={ | ... | @@ -10,7 +10,11 @@ module.exports ={ |
10 | .addStringOption((option) => | 10 | .addStringOption((option) => |
11 | option.setName('레이드') | 11 | option.setName('레이드') |
12 | .setDescription('군단장 레이드 이름') | 12 | .setDescription('군단장 레이드 이름') |
13 | - .setRequired(true)), | 13 | + .setRequired(true) |
14 | + .addChoices({ name: "발탄", value: "발탄"}) | ||
15 | + .addChoices({ name: "비아키스", value: "비아키스"}) | ||
16 | + .addChoices({ name: "쿠크세이튼", value: "쿠크세이튼"}) | ||
17 | + .addChoices({ name: "아브렐슈드", value: "아브렐슈드"})), | ||
14 | async execute(interaction){ | 18 | async execute(interaction){ |
15 | const rade_name = interaction.options.getString('레이드'); | 19 | const rade_name = interaction.options.getString('레이드'); |
16 | 20 | ... | ... |
-
Please register or login to post a comment