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-06-06 23:32:43 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
12083c0221a161934c1b24da3e5e4aafba8fc8ec
12083c02
1 parent
1430da0b
Improve convenience
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
commands/guide.js
commands/guide.js
View file @
12083c0
...
...
@@ -10,7 +10,11 @@ module.exports ={
.
addStringOption
((
option
)
=>
option
.
setName
(
'레이드'
)
.
setDescription
(
'군단장 레이드 이름'
)
.
setRequired
(
true
)),
.
setRequired
(
true
)
.
addChoices
({
name
:
"발탄"
,
value
:
"발탄"
})
.
addChoices
({
name
:
"비아키스"
,
value
:
"비아키스"
})
.
addChoices
({
name
:
"쿠크세이튼"
,
value
:
"쿠크세이튼"
})
.
addChoices
({
name
:
"아브렐슈드"
,
value
:
"아브렐슈드"
})),
async
execute
(
interaction
){
const
rade_name
=
interaction
.
options
.
getString
(
'레이드'
);
...
...
Please
register
or
login
to post a comment