fix: Embed's name

This commit is contained in:
Siwoo Jeon 2025-04-06 14:46:26 +09:00
parent 4d46177a66
commit a109806643
Signed by: migan
GPG key ID: 036E9A8C5E8E48DA
2 changed files with 2 additions and 2 deletions

View file

@ -93,7 +93,7 @@ func helpRun(c *Command, s *discordgo.Session, m any, args *[]string) {
command := Discommand.Commands[commandName] command := Discommand.Commands[commandName]
embed.Title = fmt.Sprintf("%s의 %s 도움말", s.State.User.Username, command.Name) embed.Title = fmt.Sprintf("%s의 %s 명령어의 도움말", s.State.User.Username, command.Name)
embed.Fields = []*discordgo.MessageEmbedField{ embed.Fields = []*discordgo.MessageEmbedField{
{ {
Name: "설명", Name: "설명",

View file

@ -7,7 +7,7 @@ import (
"git.wh64.net/muffin/goMuffin/utils" "git.wh64.net/muffin/goMuffin/utils"
) )
const MUFFIN_VERSION = "5.0.0-gopher_preview.250405b" const MUFFIN_VERSION = "5.0.0-gopher_preview.250406a"
var updatedString string = utils.Decimals.FindAllStringSubmatch(MUFFIN_VERSION, -1)[3][0] var updatedString string = utils.Decimals.FindAllStringSubmatch(MUFFIN_VERSION, -1)[3][0]