diff --git a/commands/information.go b/commands/information.go index 598737c..9ea6d0e 100644 --- a/commands/information.go +++ b/commands/information.go @@ -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, }, diff --git a/configs/version.go b/configs/version.go index 1fd4f0e..b32569b 100644 --- a/configs/version.go +++ b/configs/version.go @@ -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]