We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 516e78a commit 65695f4Copy full SHA for 65695f4
WowPacketParserModule.V7_0_3_22248/Parsers/PetHandler.cs
@@ -60,6 +60,14 @@ public static void HandlePetSpells(Packet packet)
60
if (slot == 7 && spellId != 2 || slot == 6 && spellId < 10)
61
continue;
62
63
+ var creatureTemplateSpell = new CreatureTemplateSpell
64
+ {
65
+ CreatureID = petGuid.GetEntry(),
66
+ Index = (byte)(i),
67
+ Spell = spellId
68
+ };
69
+ Storage.CreatureTemplateSpells.Add(creatureTemplateSpell);
70
+
71
// pets do not have npc entry available in sniff - skip
72
if (petGuid.GetHighType() == HighGuidType.Pet)
73
0 commit comments