diff --git a/commands.go b/commands.go index 4f26e43..4457acd 100644 --- a/commands.go +++ b/commands.go @@ -180,7 +180,7 @@ func BumpSet(b BotCommand) bool { return false } config.BumpTime = time.Now().Add(time.Duration(timer) * time.Minute).Add(-2 * time.Hour) - b.Session.ChannelMessageSend(b.Message.ChannelID, fmt.Sprintf("New bump time: %+v, expecting bump at %+v", config.BumpTime, config.BumpTime.Add(2*time.Hour).Format("15:04:05"))) + b.Session.ChannelMessageSend(b.Message.ChannelID, fmt.Sprintf("New last bump time: %+v, expecting next bump at %+v", config.BumpTime.Format("15:04:05"), config.BumpTime.Add(2*time.Hour).Format("15:04:05"))) return true }