Minty U

Change category name to upper case

......@@ -69,7 +69,7 @@ exports.run = async (client, msg, args, prefix) => {
exports.config = {
name: '도움말',
aliases: ['도움', '명령어', 'commands', 'help'],
category: ['example'],
category: ['Help'],
des: ['봇에 대한 명령어 리스트들을 불러옵니다.'],
use: ['!도움말 <명령어>']
};
\ No newline at end of file
......
......@@ -79,7 +79,7 @@ exports.run = async (client, msg, args, prefix) => {
exports.config = {
name: 'ocr',
aliases: ['ㅐㅊㄱ'],
category: ['ocr'],
category: ['Ocr'],
des: ['이미지를 첨부하고 명령어를 입력하면, 이미지에 있는 텍스트를 추출합니다.'],
use: ['!ocr <사용 언어>']
};
\ No newline at end of file
......
......@@ -3,7 +3,7 @@ exports.run = async (client, msg, args, prefix) => {
if (args[0]) { // 명령어 뒤에 입력값이 있을 경우 (ex. !<명령어> <채팅>)
let Commands = new Discord.MessageEmbed()
.setTitle(`${args[0]}에 대한 검색 결과`)
.setColor("E5D49A")
.setColor("E5D49A");
msg.reply({ embeds: [Commands] });
} else {
msg.reply("검색어가 없습니다. 검색어를 추가해서 다시 입력해주세요.");
......@@ -13,7 +13,7 @@ exports.run = async (client, msg, args, prefix) => {
exports.config = {
name: '문구',
aliases: [' ', ' ', ' ', ' '],
category: ['stationery'],
category: ['Stationery'],
des: ['채팅 내용에 대한 검색결과를 보여줍니다.'],
use: ['!문구 <채팅>']
};
\ No newline at end of file
......