ZNPCsPlus icon indicating copy to clipboard operation
ZNPCsPlus copied to clipboard

[1.21.8] Can't set horse armor

Open envizar opened this issue 7 months ago • 0 comments

/npc property set <horse-npc> chestplate does nothing on 1.21.8. Found solution:

if (EntityTypes.isTypeInstanceOf(type, EntityTypes.HORSE)) {
-    addProperties("chestplate");
+    addProperties("body");
}

But I didn't create a PR because I don't want to manually search in which mc version it changed. Maybe I will do it later

("supporting 1.8 to latest" makes things hard)

envizar avatar Jul 26 '25 07:07 envizar