From c2a35bb2e1054d545438ccd16f5761bbc69e1eae Mon Sep 17 00:00:00 2001 From: Paul Coene Date: Tue, 9 Jan 2018 20:31:48 -0500 Subject: [PATCH] Exclude clients from FixZ to fix fear issues. --- zone/waypoints.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/waypoints.cpp b/zone/waypoints.cpp index d761c6a70..18800101b 100644 --- a/zone/waypoints.cpp +++ b/zone/waypoints.cpp @@ -884,7 +884,7 @@ void Mob::FixZ(int32 z_find_offset /*= 5*/) glm::vec3 current_loc(m_Position); float new_z=GetFixedZ(current_loc, z_find_offset); - if (new_z != m_Position.z) + if (!IsClient() && new_z != m_Position.z) { if ((new_z > -2000) && new_z != BEST_Z_INVALID) { if (RuleB(Map, MobZVisualDebug))