Skip to content

Commit

Permalink
Update CharacterHandler.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Shauren authored Jan 17, 2025
1 parent 03b0940 commit 98db477
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ public static void HandleRequestStoreFrontInfoUpdate(Packet packet)
{
packet.ReadUInt32("StoreFrontID");

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

0 comments on commit 98db477

Please sign in to comment.