Formatting

This commit is contained in:
2023-09-15 13:12:57 -04:00
parent 99e6f7066b
commit dd433f44ad

View File

@ -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
}