From 695b22c3d5f5d585ffb6cc714301fc8e7297f01f Mon Sep 17 00:00:00 2001 From: Siwoo Jeon Date: Sun, 30 Mar 2025 00:17:09 +0900 Subject: [PATCH] fix: Add inlineCode --- commands/information.go | 2 +- configs/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/information.go b/commands/information.go index 4829354..2f25cb2 100644 --- a/commands/information.go +++ b/commands/information.go @@ -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: "제작자", diff --git a/configs/version.go b/configs/version.go index 77e773e..21af01d 100644 --- a/configs/version.go +++ b/configs/version.go @@ -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]