diff --git a/2006Redone Server/src/redone/game/bots/BotHandler.java b/2006Redone Server/src/redone/game/bots/BotHandler.java index da768672..2100d376 100644 --- a/2006Redone Server/src/redone/game/bots/BotHandler.java +++ b/2006Redone Server/src/redone/game/bots/BotHandler.java @@ -48,6 +48,12 @@ public class BotHandler client.getPlayerAssistant().levelUp(i); i++; } + // Take the appearance of the player + i = 0; + for (int id : player.playerAppearance) { + client.playerAppearance[i] = id; + i++; + } // Dress the bot the same as the player i = 0; for (int item_id : player.playerEquipment) { diff --git a/CompiledServer/production/2006rebotted/redone/game/bots/BotHandler.class b/CompiledServer/production/2006rebotted/redone/game/bots/BotHandler.class index 603edc6d..2ebea5be 100644 Binary files a/CompiledServer/production/2006rebotted/redone/game/bots/BotHandler.class and b/CompiledServer/production/2006rebotted/redone/game/bots/BotHandler.class differ