Customizable Elytra

Customizable Elytra

6M Downloads

Not showing in curios cosmetic slot

DoctorMage opened this issue ยท 2 comments

commented

Mods included

caelus-forge-1.16.5-2.1.3.2.jar
ColtCosmeticArmorMod-1.2.5.jar
CosmeticArmorReworked-1.16.5-v5.jar
curiouselytra-forge-1.16.5-4.0.2.4.jar
curios-forge-1.16.5-4.0.8.2.jar
customizableelytra-1.16.4-1.6.1.jar
relics-1.16.5-0.3.4.3.jar

Forge Version : 36.2.34

When put in cosmetic back slot elytra will not show and also disables appearnace of other items in back slot
using relics as comparsion
unsure which mod enables the slot but I know colts cosmetic armor does

https://streamable.com/y1795k

commented

Thanks for reporting but I don't think this is an issue with this mod. The only part where customizable elytra interacts with 1.16 is in this part of the code:

public static ItemStack getCurioElytra(LivingEntity entity) {
Optional<ImmutableTriple<String, Integer, ItemStack>> curio = CuriosApi.getCuriosHelper().findEquippedCurio(ModItems.CUSTOMIZABLE_ELYTRA.get(), entity);
if (curio.isPresent()) {
return curio.get().getRight();
}
return ItemStack.EMPTY;
}

It uses the curios API to get the item, which is then used in rendering if it exists. No other code interacts with curios and thus I don't believe it is at fault here. Perhaps one of your other mods that interacts more with curios is responsible.

commented

Alright then thanks for the update