Skip to content

Commit

Permalink
Fixed SMSG_CANCEL_SPELL_VISUAL_KIT structure for 11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliminationzx committed Jan 24, 2025
1 parent 32d61c2 commit 3f26072
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions WowPacketParserModule.V11_0_0_55666/Parsers/SpellHandler.cs
Original file line number Diff line number Diff line change
@@ -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");
}
}
}

0 comments on commit 3f26072

Please sign in to comment.