Showing
1 changed file
with
11 additions
and
2 deletions
... | @@ -10,7 +10,16 @@ module.exports = { | ... | @@ -10,7 +10,16 @@ module.exports = { |
10 | .setName("경매가") | 10 | .setName("경매가") |
11 | .setDescription("경매 물품의 경매장 최저가") | 11 | .setDescription("경매 물품의 경매장 최저가") |
12 | .setRequired(true) | 12 | .setRequired(true) |
13 | + ) | ||
14 | + .addStringOption((option)=> | ||
15 | + option | ||
16 | + .setName("인원") | ||
17 | + .setDescription("경매에 참여하는 인원") | ||
18 | + .setRequired(true) | ||
19 | + .addChoice("4인", "4인") | ||
20 | + .addChoice("8인", "8인") | ||
21 | + .addChoice("16인", "16인") | ||
22 | + .addChoice("30인(필보/카게)", "30인(필보/카게)") | ||
13 | ), | 23 | ), |
14 | - async execute(interaction) { | 24 | + async execute(interaction) {}, |
15 | - }, | ||
16 | }; | 25 | }; |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment