fix: Learn command examples prefix
This commit is contained in:
parent
25aae0c8cb
commit
0583945249
2 changed files with 3 additions and 2 deletions
|
@ -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),
|
||||
|
|
|
@ -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),
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue