From d624ff260d3abd6ecf1da532b2eebb7edc953691 Mon Sep 17 00:00:00 2001 From: Emagi Date: Sat, 26 Apr 2025 09:22:58 -0400 Subject: [PATCH] AoM client also impacted by the issue removed version check and we will just not use the send spawn update boolean --- source/WorldServer/Spawn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/WorldServer/Spawn.cpp b/source/WorldServer/Spawn.cpp index 31f79c9..5afe02c 100644 --- a/source/WorldServer/Spawn.cpp +++ b/source/WorldServer/Spawn.cpp @@ -868,7 +868,7 @@ uchar* Spawn::spawn_pos_changes(Player* player, int16 version, int16* pos_packet player->pos_mutex.writelock(__FUNCTION__, __LINE__); uchar* orig_packet = player->GetSpawnPosPacketForXOR(id); packet->ResetData(); - InitializePosPacketData(player, packet, version > 561 ? true : false); + InitializePosPacketData(player, packet); string* data = packet->serializeString(); int32 size = data->length(); uchar* xor_pos_packet = player->GetTempPosPacketForXOR();