From 13cf183fd56a140c18e1b3b8e4a9965666cc8f22 Mon Sep 17 00:00:00 2001 From: limited_dev Date: Mon, 5 Jun 2023 12:51:07 +0200 Subject: [PATCH] fix: fixed time in TimePlanner Signed-off-by: limited_dev --- src/main/kotlin/net/moonleay/lilJudd/features/TimePlanner.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/net/moonleay/lilJudd/features/TimePlanner.kt b/src/main/kotlin/net/moonleay/lilJudd/features/TimePlanner.kt index a8bb189..778673a 100644 --- a/src/main/kotlin/net/moonleay/lilJudd/features/TimePlanner.kt +++ b/src/main/kotlin/net/moonleay/lilJudd/features/TimePlanner.kt @@ -96,7 +96,7 @@ object TimePlanner { this.components.addAll(ButtonUtil.getTimePlannerButtons().components) } } - then = then.plusDays(1).withHour(20).withMinute(24).withSecond(0) + then = then.plusDays(1).withHour(4).withMinute(0).withSecond(0) Logger.out("Finished sending day $it") delay(1000) }