diff --git a/src/main/java/exopandora/worldhandler/builder/component/impl/EntityNBT.java b/src/main/java/exopandora/worldhandler/builder/component/impl/EntityNBT.java index cbde9cf..08362b2 100644 --- a/src/main/java/exopandora/worldhandler/builder/component/impl/EntityNBT.java +++ b/src/main/java/exopandora/worldhandler/builder/component/impl/EntityNBT.java @@ -173,7 +173,7 @@ public class EntityNBT implements IBuilderComponent public void setArmorItem(int index, ResourceLocation location) { - if(EntityNBT.isArrayIndexValid(this.armorItems, index) && location != null) //TODO + if(EntityNBT.isArrayIndexValid(this.armorItems, index) && location != null) { this.armorItems[index] = location; }