Skip to content

Commit

Permalink
Fixed CMSG_REQUEST_STORE_FRONT_INFO_UPDATE structure for 11.0 (#908)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliminationzx authored Jan 17, 2025
1 parent 5fa8102 commit 66e6e15
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions WowPacketParserModule.V11_0_0_55666/Parsers/CharacterHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -188,5 +188,15 @@ public static void HandleStandStateChange(Packet packet)
{
packet.ReadByteE<StandState>("StandState");
}

[Parser(Opcode.CMSG_REQUEST_STORE_FRONT_INFO_UPDATE)]
public static void HandleRequestStoreFrontInfoUpdate(Packet packet)
{
packet.ReadUInt32("StoreFrontID");

var count = packet.ReadUInt32("CurrencyCount");
for (var i = 0; i < count; ++i)
packet.ReadInt32<CurrencyId>("CurrencyID", i);
}
}
}

0 comments on commit 66e6e15

Please sign in to comment.