Skip to content

Commit

Permalink
Fixed CMSG_REQUEST_STORE_FRONT_INFO_UPDATE structure for 11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliminationzx committed Jan 11, 2025
1 parent d530502 commit 03b0940
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 @@ -183,5 +183,15 @@ public static void HandleEnumCharactersResult(Packet packet)
V7_0_3_22248.Parsers.CharacterHandler.ReadRaceUnlockData(packet, i, "RaceUnlockData");

}

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

var count = packet.ReadUInt32("UnknownCount");
for (var i = 0; i < count; ++i)
packet.ReadInt32("UnknownField", i);
}
}
}

0 comments on commit 03b0940

Please sign in to comment.