fix: update default version for unspecified packet types to match Overte PacketHeaders.cpp

This commit is contained in:
MayaTheShy
2025-11-08 19:02:53 -05:00
parent 3988bf3766
commit 1db969ebe9

View File

@@ -449,7 +449,7 @@ uint8_t NLPacket::versionForPacketType(PacketType type) {
// For other packet types, return a default version
// In real Overte, each has a specific version
default:
return 23; // Default version for unspecified packets (matches Overte)
return 22; // Default version for unspecified packets (matches Overte PacketHeaders.cpp)
}
}