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 }