Skip to content

Commit

Permalink
Fixed SMSG_PET_DISMISS_SOUND structure for 10.1.7 (#918)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliminationzx authored Jan 28, 2025
1 parent 166d2cd commit 3e830df
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions WowPacketParserModule.V10_0_0_46181/Parsers/PetHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,13 @@ public static void HandlePetAbandonByNumber(Packet packet)
{
packet.ReadUInt32("PetNumber");
}

[Parser(Opcode.SMSG_PET_DISMISS_SOUND, ClientVersionBuild.V10_1_7_51187)]
public static void HandlePetDismissSound(Packet packet)
{
packet.ReadPackedGuid128("UnitGUID");
packet.ReadInt32("CreatureDisplayInfoID");
packet.ReadVector3("ModelPosition");
}
}
}

0 comments on commit 3e830df

Please sign in to comment.