fix(streaks_reminder): cooldown

This commit is contained in:
rhunk
2023-11-05 02:57:04 +01:00
parent 517aa82157
commit a160be8fd3
2 changed files with 15 additions and 11 deletions

View File

@ -3,7 +3,7 @@ package me.rhunk.snapenhance.common.config.impl
import me.rhunk.snapenhance.common.config.ConfigContainer
class StreaksReminderConfig : ConfigContainer(hasGlobalState = true) {
val interval = integer("interval", 2)
val interval = integer("interval", 1)
val remainingHours = integer("remaining_hours", 13)
val groupNotifications = boolean("group_notifications", true)
}