mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-25 13:57:59 +01:00
Fixed guardians having earth legs
This commit is contained in:
parent
13833d8a3f
commit
52859c7343
1 changed files with 7 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
package com.minelittlepony.client.model.entity.race;
|
||||
|
||||
import com.minelittlepony.client.model.armour.PonyArmourModel;
|
||||
import com.minelittlepony.mson.api.ModelContext;
|
||||
import com.minelittlepony.api.model.BodyPart;
|
||||
import com.minelittlepony.api.model.ModelAttributes;
|
||||
import com.minelittlepony.api.model.armour.IArmour;
|
||||
|
@ -33,6 +34,12 @@ public class SeaponyModel<T extends LivingEntity> extends UnicornModel<T> {
|
|||
this(tree, false);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init(ModelContext context) {
|
||||
super.init(context);
|
||||
setVisible(true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IArmour<?> createArmour() {
|
||||
return new ArmourWrapper<>(Armour::new);
|
||||
|
|
Loading…
Reference in a new issue