From fd6e5f465d739dc84a27263e8a2394863d944a48 Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Wed, 19 Mar 2025 16:17:25 -0500 Subject: [PATCH] [Fix] Zone State Position Fix (#4784) --- zone/zone_save_state.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zone/zone_save_state.cpp b/zone/zone_save_state.cpp index 726694ca8..9f201c5b6 100644 --- a/zone/zone_save_state.cpp +++ b/zone/zone_save_state.cpp @@ -342,7 +342,9 @@ inline void LoadNPCState(Zone *zone, NPC *n, ZoneStateSpawnsRepository::ZoneStat n->Depop(); } } - + + n->SetPosition(s.x, s.y, s.z); + n->SetHeading(s.heading); n->SetResumedFromZoneSuspend(true); }