Properly address Grand Exchange price as 'GE' instead of 'EX' (#11317)
This commit is contained in:
@@ -259,7 +259,7 @@ public class BankPlugin extends Plugin
|
|||||||
|
|
||||||
if (config.showHA())
|
if (config.showHA())
|
||||||
{
|
{
|
||||||
strCurrentTab += "EX: ";
|
strCurrentTab += "GE: ";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (config.showExact())
|
if (config.showExact())
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ public class GroundItemsOverlay extends Overlay
|
|||||||
{
|
{
|
||||||
if (item.getGePrice() > 0)
|
if (item.getGePrice() > 0)
|
||||||
{
|
{
|
||||||
itemStringBuilder.append(" (EX: ")
|
itemStringBuilder.append(" (GE: ")
|
||||||
.append(QuantityFormatter.quantityToStackSize(item.getGePrice()))
|
.append(QuantityFormatter.quantityToStackSize(item.getGePrice()))
|
||||||
.append(" gp)");
|
.append(" gp)");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -245,7 +245,7 @@ class ItemPricesOverlay extends Overlay
|
|||||||
{
|
{
|
||||||
if (gePrice > 0)
|
if (gePrice > 0)
|
||||||
{
|
{
|
||||||
itemStringBuilder.append("EX: ")
|
itemStringBuilder.append("GE: ")
|
||||||
.append(QuantityFormatter.quantityToStackSize((long) gePrice * qty))
|
.append(QuantityFormatter.quantityToStackSize((long) gePrice * qty))
|
||||||
.append(" gp");
|
.append(" gp");
|
||||||
if (config.showEA() && qty > 1)
|
if (config.showEA() && qty > 1)
|
||||||
|
|||||||
Reference in New Issue
Block a user