diff --git a/WowPacketParserModule.V11_0_0_55666/Parsers/SpellHandler.cs b/WowPacketParserModule.V11_0_0_55666/Parsers/SpellHandler.cs new file mode 100644 index 0000000000..34c74f23c9 --- /dev/null +++ b/WowPacketParserModule.V11_0_0_55666/Parsers/SpellHandler.cs @@ -0,0 +1,17 @@ +using WowPacketParser.Enums; +using WowPacketParser.Misc; +using WowPacketParser.Parsing; + +namespace WowPacketParserModule.V11_0_0_55666.Parsers +{ + public static class SpellHandler + { + [Parser(Opcode.SMSG_CANCEL_SPELL_VISUAL_KIT)] + public static void HandleCancelSpellVisualKit(Packet packet) + { + packet.ReadPackedGuid128("Source"); + packet.ReadInt32("SpellVisualKitID"); + packet.ReadBit("MountedVisual"); + } + } +}