Merge pull request #3369 from sainttx/ge-format-price

grandexchange: Format 'Price each' value for items
This commit is contained in:
Adam
2018-05-27 13:18:07 -04:00
committed by GitHub

View File

@@ -233,7 +233,7 @@ public class GrandExchangeOfferSlot extends JPanel
offerInfo.setText(offerState);
itemPrice.setText(htmlLabel("Price each: ", newOffer.getPrice() + ""));
itemPrice.setText(htmlLabel("Price each: ", StackFormatter.formatNumber(newOffer.getPrice())));
String action = buying ? "Spent: " : "Received: ";