fix: Learn command examples prefix

This commit is contained in:
Siwoo Jeon 2025-04-03 18:08:38 +09:00
parent 25aae0c8cb
commit 0583945249
Signed by: migan
GPG key ID: 036E9A8C5E8E48DA
2 changed files with 3 additions and 2 deletions

View file

@ -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),

View file

@ -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),
},