From 6de2bb720fc46a5fa02334c1627c8ca9756ce602 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Sun, 1 Nov 2015 17:49:45 -0600 Subject: [PATCH] Adjust AI_scan_area_timer to randomly start between 1-3 ticks (6-18 seconds) --- zone/mob_ai.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/mob_ai.cpp b/zone/mob_ai.cpp index 36bddf809..1602699a2 100644 --- a/zone/mob_ai.cpp +++ b/zone/mob_ai.cpp @@ -480,7 +480,7 @@ void Mob::AI_Start(uint32 iMoveDelay) { AI_movement_timer = std::unique_ptr(new Timer(AImovement_duration)); AI_target_check_timer = std::unique_ptr(new Timer(AItarget_check_duration)); AI_feign_remember_timer = std::unique_ptr(new Timer(AIfeignremember_delay)); - AI_scan_area_timer = std::unique_ptr(new Timer(AIscanarea_delay)); + AI_scan_area_timer = std::unique_ptr(new Timer(RandomTimer(6000, 18000))); AI_check_signal_timer = std::unique_ptr(new Timer(AI_check_signal_timer_delay)); #ifdef REVERSE_AGGRO