Skip to content

Commit

Permalink
Update SpellHandler.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Shauren authored Jan 28, 2025
1 parent 3f26072 commit f3c73b0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion WowPacketParserModule.V9_0_1_36216/Parsers/SpellHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,15 @@ public static void HandleCastVisualKit(Packet packet)
playSpellVisualKit.KitRecId = packet.ReadInt32("KitRecID");
playSpellVisualKit.KitType = packet.ReadInt32("KitType");
playSpellVisualKit.Duration = packet.ReadUInt32("Duration");
packet.ReadBit("MountedVisual");
packet.ReadBit("SetMountAnim");
}

[Parser(Opcode.SMSG_CANCEL_SPELL_VISUAL_KIT)]
public static void HandleCancelSpellVisualKit(Packet packet)
{
packet.ReadPackedGuid128("Source");
packet.ReadInt32("SpellVisualKitID");
packet.ReadBit("SetMountAnim");
}

[Parser(Opcode.CMSG_UPDATE_SPELL_VISUAL)]
Expand Down

0 comments on commit f3c73b0

Please sign in to comment.