Skip to content

Commit

Permalink
fix loading mirrorSkin
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverSchlueter committed Aug 29, 2024
1 parent 296a7fe commit adafcc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/oliver/fancynpcs/NpcManagerImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public void loadNpcs() {
}

boolean oldMirrorSkin = npcConfig.getBoolean("npcs." + id + ".mirrorSkin"); //TODO: remove in next version
boolean mirrorSkin = oldMirrorSkin || npcConfig.getBoolean("npcs." + id + "skin.mirrorSkin");
boolean mirrorSkin = oldMirrorSkin || npcConfig.getBoolean("npcs." + id + ".skin.mirrorSkin");

boolean showInTab = npcConfig.getBoolean("npcs." + id + ".showInTab");
boolean spawnEntity = npcConfig.getBoolean("npcs." + id + ".spawnEntity");
Expand Down

0 comments on commit adafcc9

Please sign in to comment.