From 8a0b97c89dd54c51d4444b760256d743fe147faf Mon Sep 17 00:00:00 2001 From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com> Date: Tue, 2 Mar 2021 05:03:02 +0000 Subject: [PATCH] Fixed aether drop counter reset. Contributed by CostyKiller. --- .../dist/game/data/scripts/ai/others/AetherDrops.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/L2J_Mobius_8.0_Homunculus/dist/game/data/scripts/ai/others/AetherDrops.java b/L2J_Mobius_8.0_Homunculus/dist/game/data/scripts/ai/others/AetherDrops.java index 4a77042169..8503d038ed 100644 --- a/L2J_Mobius_8.0_Homunculus/dist/game/data/scripts/ai/others/AetherDrops.java +++ b/L2J_Mobius_8.0_Homunculus/dist/game/data/scripts/ai/others/AetherDrops.java @@ -96,8 +96,7 @@ public class AetherDrops extends AbstractNpcAI if (event.equals("schedule")) { final Calendar calendar = Calendar.getInstance(); - calendar.add(Calendar.DAY_OF_YEAR, 1); - calendar.set(Calendar.HOUR, 6); + calendar.set(Calendar.HOUR_OF_DAY, 6); calendar.set(Calendar.MINUTE, 30); cancelQuestTimers("reset");