Skip to content

Commit 47c1b30

Browse files
committed
Fix the previous fix
1 parent 2c4548c commit 47c1b30

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

WowPacketParser/Parsing/Parsers/SpellHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public static void HandleNotifyDestLocSpellCast(Packet packet)
9090
// alignment padding (to 8 bytes)
9191
packet.ReadUInt16();
9292
// client tries to read 64 bytes, server sends 60
93-
if (packet.Position + 4 < packet.Length)
93+
if (packet.Position + 4 <= packet.Length)
9494
packet.ReadUInt32();
9595
}
9696

0 commit comments

Comments
 (0)