From c87380fa54379bff2d745d24a5d8b8147a77004a Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Fri, 23 Feb 2018 17:42:57 -0500 Subject: [PATCH] Actually fix pet warp range ... --- 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 fec331cb5..a7d1c2cb4 100644 --- a/zone/mob_ai.cpp +++ b/zone/mob_ai.cpp @@ -1428,7 +1428,7 @@ void Mob::AI_Process() { if (dist >= 5625) speed = GetRunspeed(); - if (distz > 100) + if (dist >= 202500 || distz > 100) // dist >= 450 { m_Position = ownerPos; SendPositionUpdate();