Ground Items - Fix quantity in high alch value display

This commit is contained in:
Unmoon
2017-12-22 15:33:59 +02:00
committed by Adam
parent c647d755b4
commit d74f2f3e46

View File

@@ -287,7 +287,7 @@ public class GroundItemsOverlay extends Overlay
if (config.showHAValue()) if (config.showHAValue())
{ {
itemStringBuilder.append(" (HA: ") itemStringBuilder.append(" (HA: ")
.append(Math.round(item.getPrice() * HIGH_ALCHEMY_CONSTANT)) .append(Math.round(item.getPrice() * HIGH_ALCHEMY_CONSTANT) * quantity)
.append(" gp)"); .append(" gp)");
} }