From 2854472ae0426fd916401d037c323707f9b62a03 Mon Sep 17 00:00:00 2001 From: FatBoy-DOTC Date: Sun, 21 Apr 2024 14:45:17 -0500 Subject: [PATCH] fixed bug with mob cast time frequency --- src/engine/mobileAI/Threads/MobAIThread.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/mobileAI/Threads/MobAIThread.java b/src/engine/mobileAI/Threads/MobAIThread.java index b3699879..4983c471 100644 --- a/src/engine/mobileAI/Threads/MobAIThread.java +++ b/src/engine/mobileAI/Threads/MobAIThread.java @@ -13,7 +13,7 @@ public class MobAIThread implements Runnable{ public static int AI_DROP_AGGRO_RANGE = 60; public static int AI_PULSE_MOB_THRESHOLD = 200; public static int AI_PATROL_DIVISOR = 15; - public static float AI_CAST_FREQUENCY; + public static float AI_CAST_FREQUENCY = 1.0f; // Thread constructor public MobAIThread() {