diff --git a/2006Redone Server/src/redone/game/bots/Bot.java b/2006Redone Server/src/redone/game/bots/Bot.java index 53c4728a..72dac92f 100644 --- a/2006Redone Server/src/redone/game/bots/Bot.java +++ b/2006Redone Server/src/redone/game/bots/Bot.java @@ -65,7 +65,7 @@ public class Bot { } if (items.size() <= 0) return; int item_id = Misc.randomArrayListItem(items); - String item_name = ItemAssistant.getItemName(item_id); + String item_name = ItemAssistant.getItemName(item_id).toLowerCase(); int value = BotHandler.getItemPrice(botClient.myShopId, item_id); if (value <= 0) return; botClient.forcedChat("Selling " + item_name + " " + formatSellPrice(value) + " ea"); diff --git a/CompiledServer/production/2006rebotted/redone/game/bots/Bot.class b/CompiledServer/production/2006rebotted/redone/game/bots/Bot.class index 9a6d7e0c..30e49ec9 100644 Binary files a/CompiledServer/production/2006rebotted/redone/game/bots/Bot.class and b/CompiledServer/production/2006rebotted/redone/game/bots/Bot.class differ