diff --git a/WowPacketParserModule.V9_0_1_36216/Parsers/SpellHandler.cs b/WowPacketParserModule.V9_0_1_36216/Parsers/SpellHandler.cs index b0109f6af2..a82ac518ae 100644 --- a/WowPacketParserModule.V9_0_1_36216/Parsers/SpellHandler.cs +++ b/WowPacketParserModule.V9_0_1_36216/Parsers/SpellHandler.cs @@ -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)]