diff --git a/2006Redone Server/src/redone/game/bots/Bot.java b/2006Redone Server/src/redone/game/bots/Bot.java index 3b16a550..53c4728a 100644 --- a/2006Redone Server/src/redone/game/bots/Bot.java +++ b/2006Redone Server/src/redone/game/bots/Bot.java @@ -90,11 +90,11 @@ public class Bot { private String formatSellPrice(int price) { DecimalFormat df = new DecimalFormat("#.##"); if (price >= 1e9) { - return df.format(Math.floor(price / 1e8) / 10) + "B"; + return df.format(Math.floor(price / 1e8) / 10) + "b"; } else if (price >= 1e6) { - return df.format(Math.floor(price / 1e5) / 10) + "M"; + return df.format(Math.floor(price / 1e5) / 10) + "m"; } else if (price >= 1e3) { - return df.format(Math.floor(price / 100) / 10) + "K"; + return df.format(Math.floor(price / 100) / 10) + "k"; } else { return price + "gp"; } diff --git a/CompiledServer/production/2006rebotted/redone/game/bots/Bot.class b/CompiledServer/production/2006rebotted/redone/game/bots/Bot.class index 4879d7b9..9a6d7e0c 100644 Binary files a/CompiledServer/production/2006rebotted/redone/game/bots/Bot.class and b/CompiledServer/production/2006rebotted/redone/game/bots/Bot.class differ