From 5bdcbd03ef00b46769d018c43f24b73f40d90840 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 17:56:14 -0500 Subject: [PATCH] fix: update number of packet types in computeProtocolVersionSignature to match Overte --- src/NLPacketCodec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NLPacketCodec.cpp b/src/NLPacketCodec.cpp index 1b810ea..21ee503 100644 --- a/src/NLPacketCodec.cpp +++ b/src/NLPacketCodec.cpp @@ -188,7 +188,7 @@ std::vector NLPacket::computeProtocolVersionSignature() { std::vector buffer; // Write number of packet types (256 max, but we'll use actual count) - uint8_t numPacketTypes = 128; // Conservative estimate for now + uint8_t numPacketTypes = 106; // NUM_PACKET_TYPE from Overte buffer.push_back(numPacketTypes); // Write version for each packet type