fix: Add inlineCode
This commit is contained in:
parent
10d40e85d3
commit
695b22c3d5
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ func (c *Command) informationRun(s *discordgo.Session, m any) {
|
|||
Fields: []*discordgo.MessageEmbedField{
|
||||
{
|
||||
Name: "운영 체제",
|
||||
Value: runtime.GOOS + " " + runtime.GOARCH,
|
||||
Value: utils.InlineCode(runtime.GOOS + " " + runtime.GOARCH),
|
||||
},
|
||||
{
|
||||
Name: "제작자",
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"git.wh64.net/muffin/goMuffin/utils"
|
||||
)
|
||||
|
||||
const MUFFIN_VERSION = "0.0.0-gopher_canary.250329b"
|
||||
const MUFFIN_VERSION = "0.0.0-gopher_canary.250329c"
|
||||
|
||||
var updatedString string = utils.Decimals.FindAllStringSubmatch(MUFFIN_VERSION, -1)[3][0]
|
||||
|
||||
|
|
Loading…
Reference in a new issue