mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 08:14:23 +01:00
Fixed villagers missing ears
This commit is contained in:
parent
4748c7e5af
commit
b9348b81bc
1 changed files with 2 additions and 3 deletions
|
@ -16,7 +16,6 @@ public class PonyEars implements IPart, MsonModel {
|
|||
private ModelPart left;
|
||||
|
||||
public PonyEars(ModelPart tree) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -25,8 +24,8 @@ public class PonyEars implements IPart, MsonModel {
|
|||
left = context.findByName("left");
|
||||
|
||||
PartBuilder head = context.getContext();
|
||||
head.addChild("right_ear", right);
|
||||
head.addChild("left_ear", left);
|
||||
head.addChild("right_ear_" + hashCode(), right);
|
||||
head.addChild("left_ear_" + hashCode(), left);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue