From e18d4a81c5a1f61641f8b5541805a9e4f7b532fc Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Mon, 10 Oct 2022 23:55:49 -0400 Subject: [PATCH] [Zoning] Possible zoning under world fix (#2424) --- zone/client_packet.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 5a16a88d3..8db70c6a2 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -909,6 +909,10 @@ void Client::CompleteConnect() GoToSafeCoords(ZoneID("arena"), 0); return; } + + // force resending of position when finally complete + // in hopes to alleviating race condition under-world issues + MovePC(zone->GetZoneID(), zone->GetInstanceID(), GetX(), GetY(), GetZ(), GetHeading()); } // connecting opcode handlers