From 5c39cbdafbf41133c205a03571fb982d1d48134c Mon Sep 17 00:00:00 2001 From: = Date: Wed, 24 Nov 2021 10:33:59 -0500 Subject: [PATCH] Fixed mention for automatic bump set --- discordMessage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discordMessage.go b/discordMessage.go index 06fb36d..eb07544 100644 --- a/discordMessage.go +++ b/discordMessage.go @@ -15,7 +15,7 @@ func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) { log.LogDebug("Failed bump detected") re := regexp.MustCompile("Please wait another (.*) minutes until the server can be bumped") match := re.FindStringSubmatch(m.Embeds[0].Description) - m.Content = fmt.Sprintf("@Thanos bs %+v", match[1]) + m.Content = fmt.Sprintf("%+v bs %+v", s.State.User.Mention(), match[1]) BumpSet(BotCommand{ Message: m, Session: s,