We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 529f47b commit dae355bCopy full SHA for dae355b
1 file changed
WowPacketParser/Loading/BinaryPacketReader.cs
@@ -114,6 +114,10 @@ void ReadHeader()
114
{
115
if (additionalLength >= 2)
116
_snifferVersion = BitConverter.ToInt16(optionalData, 0);
117
+
118
+ // due to uint16 overflow in FileVersionInfo
119
+ if (ClientVersion.Build == ClientVersionBuild.Zero && _snifferVersion == 0x0102)
120
+ SetBuild(65560);
121
}
122
break;
123
0 commit comments