add gp to lower prices

This commit is contained in:
RedSparr0w
2019-11-23 17:25:19 +13:00
parent bda929229e
commit 64ce050d10
2 changed files with 1 additions and 1 deletions
@@ -96,7 +96,7 @@ public class Bot {
} else if (price >= 1e3) {
return df.format(Math.floor(price / 100) / 10) + "K";
} else {
return "" + price;
return price + "gp";
}
}
}