We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c4548c commit 47c1b30Copy full SHA for 47c1b30
1 file changed
WowPacketParser/Parsing/Parsers/SpellHandler.cs
@@ -90,7 +90,7 @@ public static void HandleNotifyDestLocSpellCast(Packet packet)
90
// alignment padding (to 8 bytes)
91
packet.ReadUInt16();
92
// client tries to read 64 bytes, server sends 60
93
- if (packet.Position + 4 < packet.Length)
+ if (packet.Position + 4 <= packet.Length)
94
packet.ReadUInt32();
95
}
96
0 commit comments