From 05839452497e9023a767258c51756e6e3a510e58 Mon Sep 17 00:00:00 2001 From: Siwoo Jeon Date: Thu, 3 Apr 2025 18:08:38 +0900 Subject: [PATCH] fix: Learn command examples prefix --- commands/information.go | 2 +- commands/learn.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/information.go b/commands/information.go index 2edb0f9..450305e 100644 --- a/commands/information.go +++ b/commands/information.go @@ -12,7 +12,7 @@ import ( var InformationCommand *Command = &Command{ ApplicationCommand: &discordgo.ApplicationCommand{ Name: "정보", - Description: fmt.Sprintf("머핀봇의 정보를 알ㄹ려줘요."), + Description: "해당 봇의 정보를 알ㄹ려줘요.", }, DetailedDescription: &DetailedDescription{ Usage: fmt.Sprintf("%s정보", configs.Config.Bot.Prefix), diff --git a/commands/learn.go b/commands/learn.go index 120e0b4..afbaa65 100644 --- a/commands/learn.go +++ b/commands/learn.go @@ -36,7 +36,8 @@ var LearnCommand *Command = &Command{ Aliases: []string{"공부"}, DetailedDescription: &DetailedDescription{ Usage: fmt.Sprintf("%s배워 (등록할 단어) (대답)", configs.Config.Bot.Prefix), - Examples: []string{"머핀아 배워 안녕 안녕!", + Examples: []string{ + fmt.Sprintf("%s배워 안녕 안녕!", configs.Config.Bot.Prefix), fmt.Sprintf("%s배워 \"야 죽을래?\" \"아니요 ㅠㅠㅠ\"", configs.Config.Bot.Prefix), fmt.Sprintf("%s배워 미간은_누구야? 이봇의_개발자요", configs.Config.Bot.Prefix), },