fix: update number of packet types in computeProtocolVersionSignature to match Overte

This commit is contained in:
MayaTheShy
2025-11-08 17:56:14 -05:00
parent abcdcfa3fe
commit 5bdcbd03ef

View File

@@ -188,7 +188,7 @@ std::vector<uint8_t> NLPacket::computeProtocolVersionSignature() {
std::vector<uint8_t> 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