From 916f7e30e68117f8b15e5b577fc657fea79c2da3 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 14 Jul 2025 22:09:26 -0400 Subject: [PATCH] Make sure to send Initialize on zone change --- src/world/connection.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/world/connection.rs b/src/world/connection.rs index 5688874..9136865 100644 --- a/src/world/connection.rs +++ b/src/world/connection.rs @@ -421,6 +421,19 @@ impl ZoneConnection { ); } + // they send the initialize packet again for some reason + { + self.send_segment(PacketSegment { + segment_type: SegmentType::Initialize, + data: SegmentData::Initialize { + actor_id: self.player_data.actor_id, + timestamp: timestamp_secs(), + }, + ..Default::default() + }) + .await; + } + // Init Zone { let config = get_config();