feat: Make textures/entity/elytra/ a convention

This commit is contained in:
Ampflower 🌺 2025-03-17 08:56:57 -07:00
parent dd0fe644a9
commit c5bdb3f759
No known key found for this signature in database
GPG Key ID: FC0397C90D508D7F
2 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class CustomElytraFeatureRenderer<T extends LivingEntity, M extends Entit
super(context);
this.defaultElytraTexture = defaultElytraTexture;
this.elytraTextures = new HashMap<>();
this.elytraTextures.put(JoyItems.PRIDE_ELYTRA, JoyUtil.id("textures/entity/pride_elytra.png"));
this.elytraTextures.put(JoyItems.PRIDE_ELYTRA, JoyUtil.id("textures/entity/elytra/pride_elytra.png"));
this.elytra = new ElytraEntityModel<>(loader.getModelPart(EntityModelLayers.ELYTRA));
}