Skip to content

Commit

Permalink
Fix displayed unit prices in bazaar
Browse files Browse the repository at this point in the history
  • Loading branch information
alborrajo committed Mar 29, 2024
1 parent 0686355 commit def64c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public override void Handle(GameClient client, StructurePacket<C2SBazaarGetItemI
ItemBaseInfo = new CDataBazaarItemBaseInfo() {
ItemId = packet.Structure.ItemId,
Num = i,
Price = (uint) queriedItem.Price * i,
Price = queriedItem.Price,
},
ExhibitionTime = 0
});
Expand Down

0 comments on commit def64c4

Please sign in to comment.