From dd433f44adf3518fe17b828d6a4fb27493f6a3ae Mon Sep 17 00:00:00 2001 From: Rudi Date: Fri, 15 Sep 2023 13:12:57 -0400 Subject: [PATCH] Formatting --- config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 9460950..f027de8 100644 --- a/config.go +++ b/config.go @@ -86,7 +86,7 @@ func activeInteraction(s *discordgo.Session, m string) { func rebootBump() { time.Sleep(time.Until(config.BumpTime.Add(2 * time.Hour))) - dg.ChannelMessageSend(config.AdminChannel, "!d bump is ready") + dg.ChannelMessageSend(config.AdminChannel, "/bump is ready") } @@ -97,7 +97,7 @@ func bumpTimer(s *discordgo.Session) { bump = false config.BumpTime = time.Now() time.Sleep(2 * time.Hour) - s.ChannelMessageSend(config.AdminChannel, "!d bump is ready.") + s.ChannelMessageSend(config.AdminChannel, "/bump is ready.") bump = true }