fix: Editing information command
This commit is contained in:
parent
a109806643
commit
672fdbcaaf
2 changed files with 4 additions and 4 deletions
|
@ -33,11 +33,11 @@ func informationRun(s *discordgo.Session, m any) {
|
|||
Fields: []*discordgo.MessageEmbedField{
|
||||
{
|
||||
Name: "운영 체제",
|
||||
Value: utils.InlineCode(fmt.Sprintf("%s %s", runtime.GOOS, runtime.GOARCH)),
|
||||
Value: utils.InlineCode(fmt.Sprintf("%s %s", runtime.GOARCH, runtime.GOOS)),
|
||||
},
|
||||
{
|
||||
Name: "제작자",
|
||||
Value: owner.Username,
|
||||
Value: utils.InlineCode(owner.Username),
|
||||
},
|
||||
{
|
||||
Name: "버전",
|
||||
|
@ -49,7 +49,7 @@ func informationRun(s *discordgo.Session, m any) {
|
|||
Inline: true,
|
||||
},
|
||||
{
|
||||
Name: "업타임",
|
||||
Name: "시작한 시각",
|
||||
Value: utils.Time(configs.StartedAt, utils.RelativeTime),
|
||||
Inline: true,
|
||||
},
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"git.wh64.net/muffin/goMuffin/utils"
|
||||
)
|
||||
|
||||
const MUFFIN_VERSION = "5.0.0-gopher_preview.250406a"
|
||||
const MUFFIN_VERSION = "5.0.0-gopher_preview.250407a"
|
||||
|
||||
var updatedString string = utils.Decimals.FindAllStringSubmatch(MUFFIN_VERSION, -1)[3][0]
|
||||
|
||||
|
|
Loading…
Reference in a new issue