From 85b98787b1b08275e8b619bba6410577fda45f33 Mon Sep 17 00:00:00 2001 From: Siwoo Jeon Date: Sun, 4 May 2025 18:07:35 +0000 Subject: [PATCH] fix: Help command's examples --- commands/help.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/help.go b/commands/help.go index f022633..4d1d3df 100644 --- a/commands/help.go +++ b/commands/help.go @@ -121,7 +121,7 @@ func helpRun(c *Command, s *discordgo.Session, m any, args *[]string) { if command.DetailedDescription.Examples != nil { embed.Fields = append(embed.Fields, &discordgo.MessageEmbedField{ Name: "예시", - Value: utils.CodeBlock("md", strings.Join(addPrefix(c.DetailedDescription.Examples), "\n")), + Value: utils.CodeBlock("md", strings.Join(addPrefix(command.DetailedDescription.Examples), "\n")), }) } else { embed.Fields = append(embed.Fields, &discordgo.MessageEmbedField{