Properly address Grand Exchange price as 'GE' instead of 'EX' (#11317)

This commit is contained in:
Flightkick
2020-04-20 14:29:11 +02:00
committed by GitHub
parent a888519e1c
commit 76fb24caec
3 changed files with 3 additions and 3 deletions

View File

@@ -259,7 +259,7 @@ public class BankPlugin extends Plugin
if (config.showHA())
{
strCurrentTab += "EX: ";
strCurrentTab += "GE: ";
}
if (config.showExact())

View File

@@ -243,7 +243,7 @@ public class GroundItemsOverlay extends Overlay
{
if (item.getGePrice() > 0)
{
itemStringBuilder.append(" (EX: ")
itemStringBuilder.append(" (GE: ")
.append(QuantityFormatter.quantityToStackSize(item.getGePrice()))
.append(" gp)");
}

View File

@@ -245,7 +245,7 @@ class ItemPricesOverlay extends Overlay
{
if (gePrice > 0)
{
itemStringBuilder.append("EX: ")
itemStringBuilder.append("GE: ")
.append(QuantityFormatter.quantityToStackSize((long) gePrice * qty))
.append(" gp");
if (config.showEA() && qty > 1)