mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 08:14:23 +01:00
Fixed #121 armour, arrows, and other things not rendering on Villagers
This commit is contained in:
parent
4d81b3b449
commit
da9c4ba89e
2 changed files with 2 additions and 0 deletions
|
@ -26,6 +26,7 @@ public class RenderPonyVillager extends RenderPonyMob.Caster<VillagerEntity, Mod
|
|||
|
||||
@Override
|
||||
protected void addLayers() {
|
||||
super.addLayers();
|
||||
ReloadableResourceManager resManager = (ReloadableResourceManager)MinecraftClient.getInstance().getResourceManager();
|
||||
|
||||
addFeature(new VillagerClothingFeatureRenderer<>(this, resManager, "villager"));
|
||||
|
|
|
@ -25,6 +25,7 @@ public class RenderPonyZombieVillager extends RenderPonyMob.Caster<ZombieVillage
|
|||
|
||||
@Override
|
||||
protected void addLayers() {
|
||||
super.addLayers();
|
||||
ReloadableResourceManager resManager = (ReloadableResourceManager)MinecraftClient.getInstance().getResourceManager();
|
||||
|
||||
addFeature(new VillagerClothingFeatureRenderer<>(this, resManager, "zombie_villager"));
|
||||
|
|
Loading…
Reference in a new issue