Toggle navigation
Toggle navigation
This project
Loading...
Sign in
유병우
/
lostark-discord-bot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
유병우
2022-05-27 18:53:12 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5e2f89f609b3d000032effb422a4654e4a1bf266
5e2f89f6
1 parent
24b505b5
Make arguments of auction command
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
commands/auction.js
commands/auction.js
View file @
5e2f89f
...
...
@@ -10,7 +10,16 @@ module.exports = {
.
setName
(
"경매가"
)
.
setDescription
(
"경매 물품의 경매장 최저가"
)
.
setRequired
(
true
)
)
.
addStringOption
((
option
)
=>
option
.
setName
(
"인원"
)
.
setDescription
(
"경매에 참여하는 인원"
)
.
setRequired
(
true
)
.
addChoice
(
"4인"
,
"4인"
)
.
addChoice
(
"8인"
,
"8인"
)
.
addChoice
(
"16인"
,
"16인"
)
.
addChoice
(
"30인(필보/카게)"
,
"30인(필보/카게)"
)
),
async
execute
(
interaction
)
{
},
async
execute
(
interaction
)
{},
};
\ No newline at end of file
...
...
Please
register
or
login
to post a comment