diff --git a/server/src/game/Game.js b/server/src/game/Game.js index a3befab3..bdd8c149 100644 --- a/server/src/game/Game.js +++ b/server/src/game/Game.js @@ -226,8 +226,12 @@ class Game { player.client = client; if(client.account) { const account=client.account; + if(account.skins && account.skins.equipped) { player.skin = account.skins.equipped; player.sword.skin = player.skin; + } else { + console.log(account) + } } this.players.add(player); this.map.spawnPlayer(player);