유병우

Update help.js for adding contents of auction command

......@@ -20,6 +20,7 @@ module.exports = {
.addField('/도움', '명령어 설명 및 목록', true)
.addField('/도움 <명령어>', '명령어 상세 설명', true)
.addField('/마리샵', '마리샵 정보 조회', true)
.addField('/경매', '경매 분배금 계산', true)
.addField('/정보 <닉네임>', '전투정보실 조회', true)
.addField('/로아와 <닉네임>', '로아와 조회', true)
.addField('/나침반', '금일 스케줄 조회', true)
......@@ -37,6 +38,12 @@ module.exports = {
.setTitle(`/마리샵 사용방법`)
.setDescription(`현재 마리샵과 이전, 전전의 마리샵의 정보를 조회합니다.`);
await interaction.reply({embeds: [helpEmbed], allowedMentions: {repliedUser: false}});
} else if(helpCommand === "경매") {
const helpEmbed = new MessageEmbed()
.setColor('#0099ff')
.setTitle(`/경매 <경매가> <인원> 사용방법`)
.setDescription(`경매 분배금을 계산해서 이득 입찰금을 조회합니다.`);
await interaction.reply({embeds: [helpEmbed], allowedMentions: {repliedUser: false}});
} else if(helpCommand === "정보") {
const helpEmbed = new MessageEmbed()
.setColor('#0099ff')
......