Skip to content

Commit

Permalink
Added SMSG_SPELL_VISUAL_LOAD_SCREEN parser
Browse files Browse the repository at this point in the history
Closes #912
  • Loading branch information
Eliminationzx authored and Shauren committed Jan 17, 2025
1 parent 9c1c9e9 commit 5fa8102
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions WowPacketParserModule.V7_0_3_22248/Parsers/SpellHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -775,5 +775,12 @@ public static void HandleUpdateChargeCategoryCooldown(Packet packet)
packet.ReadSingle("UnkFloat");
packet.ReadBit("UnkBool");
}

[Parser(Opcode.SMSG_SPELL_VISUAL_LOAD_SCREEN)]
public static void HandleSpellVisualLoadScreen(Packet packet)
{
packet.ReadInt32("SpellVisualKitID");
packet.ReadInt32("Delay");
}
}
}

0 comments on commit 5fa8102

Please sign in to comment.