update max reminder time

This commit is contained in:
Lee 2024-07-03 00:33:07 +01:00
parent 162d7af46b
commit e795d542b9

@ -31,7 +31,7 @@ import java.util.concurrent.TimeUnit;
@DependsOn("discordService")
public class ReminderFeature extends Feature {
public static final int MAX_REMINDERS = 5; // 5 reminders
public static final long MAX_REMINDER_LENGTH = TimeUnit.DAYS.toMillis(7); // 7 days
public static final long MAX_REMINDER_LENGTH = TimeUnit.DAYS.toMillis(30); // 1 month
private final GuildService guildService;