From d29e8dd93bc09d9aa8c4cbc9b1af786e39096bb4 Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Sun, 18 Mar 2018 19:55:59 +0100 Subject: [PATCH] Do not display stack in price tooltips Displaying amount of items in stack is unnecessary because the information is shown on item itself, so it is just making the tooltip unnecessary big. Signed-off-by: Tomas Slusny --- .../runelite/client/plugins/itemprices/ItemPricesOverlay.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/itemprices/ItemPricesOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/itemprices/ItemPricesOverlay.java index 1327459093..da5924807e 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/itemprices/ItemPricesOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/itemprices/ItemPricesOverlay.java @@ -217,10 +217,6 @@ class ItemPricesOverlay extends Overlay private String stackValueText(int qty, int gePrice, int haValue) { - if (qty > 1) - { - itemStringBuilder.append("(").append(qty).append(") "); - } if (gePrice > 0) { itemStringBuilder.append("EX: ")