Skip to content

Commit b569937

Browse files
committed
Update 3.4.4 SMSG_LEARNED_SPELLS
1 parent e61c2f1 commit b569937

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

WowPacketParserModule.V3_4_0_45166/Parsers/SpellHandler.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -532,13 +532,13 @@ public static void ReadLearnedSpellInfo(Packet packet, params object[] indexes)
532532
{
533533
packet.ReadInt32<SpellId>("SpellID", indexes);
534534
packet.ReadBit("IsFavorite", indexes);
535-
var hasField8 = packet.ReadBit();
535+
var hasEquipableSpellInvSlot = packet.ReadBit();
536536
var hasSuperceded = packet.ReadBit();
537537
var hasTraitDefinition = packet.ReadBit();
538538
packet.ResetBitReader();
539539

540-
if (hasField8)
541-
packet.ReadInt32("field_8", indexes);
540+
if (hasEquipableSpellInvSlot)
541+
packet.ReadInt32("EquipableSpellInvSlot", indexes);
542542

543543
if (hasSuperceded)
544544
packet.ReadInt32<SpellId>("Superceded", indexes);

0 commit comments

Comments
 (0)