Showing
3 changed files
with
4 additions
and
4 deletions
... | @@ -69,7 +69,7 @@ exports.run = async (client, msg, args, prefix) => { | ... | @@ -69,7 +69,7 @@ exports.run = async (client, msg, args, prefix) => { |
69 | exports.config = { | 69 | exports.config = { |
70 | name: '도움말', | 70 | name: '도움말', |
71 | aliases: ['도움', '명령어', 'commands', 'help'], | 71 | aliases: ['도움', '명령어', 'commands', 'help'], |
72 | - category: ['example'], | 72 | + category: ['Help'], |
73 | des: ['봇에 대한 명령어 리스트들을 불러옵니다.'], | 73 | des: ['봇에 대한 명령어 리스트들을 불러옵니다.'], |
74 | use: ['!도움말 <명령어>'] | 74 | use: ['!도움말 <명령어>'] |
75 | }; | 75 | }; |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -79,7 +79,7 @@ exports.run = async (client, msg, args, prefix) => { | ... | @@ -79,7 +79,7 @@ exports.run = async (client, msg, args, prefix) => { |
79 | exports.config = { | 79 | exports.config = { |
80 | name: 'ocr', | 80 | name: 'ocr', |
81 | aliases: ['ㅐㅊㄱ'], | 81 | aliases: ['ㅐㅊㄱ'], |
82 | - category: ['ocr'], | 82 | + category: ['Ocr'], |
83 | des: ['이미지를 첨부하고 명령어를 입력하면, 이미지에 있는 텍스트를 추출합니다.'], | 83 | des: ['이미지를 첨부하고 명령어를 입력하면, 이미지에 있는 텍스트를 추출합니다.'], |
84 | use: ['!ocr <사용 언어>'] | 84 | use: ['!ocr <사용 언어>'] |
85 | }; | 85 | }; |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -3,7 +3,7 @@ exports.run = async (client, msg, args, prefix) => { | ... | @@ -3,7 +3,7 @@ exports.run = async (client, msg, args, prefix) => { |
3 | if (args[0]) { // 명령어 뒤에 입력값이 있을 경우 (ex. !<명령어> <채팅>) | 3 | if (args[0]) { // 명령어 뒤에 입력값이 있을 경우 (ex. !<명령어> <채팅>) |
4 | let Commands = new Discord.MessageEmbed() | 4 | let Commands = new Discord.MessageEmbed() |
5 | .setTitle(`${args[0]}에 대한 검색 결과`) | 5 | .setTitle(`${args[0]}에 대한 검색 결과`) |
6 | - .setColor("E5D49A") | 6 | + .setColor("E5D49A"); |
7 | msg.reply({ embeds: [Commands] }); | 7 | msg.reply({ embeds: [Commands] }); |
8 | } else { | 8 | } else { |
9 | msg.reply("검색어가 없습니다. 검색어를 추가해서 다시 입력해주세요."); | 9 | msg.reply("검색어가 없습니다. 검색어를 추가해서 다시 입력해주세요."); |
... | @@ -13,7 +13,7 @@ exports.run = async (client, msg, args, prefix) => { | ... | @@ -13,7 +13,7 @@ exports.run = async (client, msg, args, prefix) => { |
13 | exports.config = { | 13 | exports.config = { |
14 | name: '문구', | 14 | name: '문구', |
15 | aliases: [' ', ' ', ' ', ' '], | 15 | aliases: [' ', ' ', ' ', ' '], |
16 | - category: ['stationery'], | 16 | + category: ['Stationery'], |
17 | des: ['채팅 내용에 대한 검색결과를 보여줍니다.'], | 17 | des: ['채팅 내용에 대한 검색결과를 보여줍니다.'], |
18 | use: ['!문구 <채팅>'] | 18 | use: ['!문구 <채팅>'] |
19 | }; | 19 | }; |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment