Skip to content

Commit

Permalink
Merge pull request runelite#1004 from deathbeam/remove-item-stack-count
Browse files Browse the repository at this point in the history
Do not display stack in price tooltips
  • Loading branch information
Adam- authored Mar 19, 2018
2 parents 8261b94 + ec91917 commit 258100f
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,6 @@ else if (id == ItemID.PLATINUM_TOKEN)

private String stackValueText(int qty, int gePrice, int haValue)
{
if (qty > 1)
{
itemStringBuilder.append("(").append(qty).append(") ");
}
if (gePrice > 0)
{
itemStringBuilder.append("EX: ")
Expand Down

0 comments on commit 258100f

Please sign in to comment.