mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-23 21:08:00 +01:00
Apply changeling pony ears fix from 1.20.2+
This commit is contained in:
parent
040105c792
commit
82a89eb1ba
1 changed files with 6 additions and 0 deletions
|
@ -7,6 +7,7 @@ import net.minecraft.util.math.MathHelper;
|
|||
|
||||
import com.minelittlepony.api.model.IPart;
|
||||
import com.minelittlepony.api.model.ModelAttributes;
|
||||
import com.minelittlepony.api.pony.meta.Race;
|
||||
import com.minelittlepony.mson.api.*;
|
||||
import com.minelittlepony.mson.api.model.PartBuilder;
|
||||
|
||||
|
@ -31,6 +32,11 @@ public class PonyEars implements IPart, MsonModel {
|
|||
right.resetTransform();
|
||||
left.resetTransform();
|
||||
|
||||
if (attributes.metadata.getRace() == Race.CHANGEDLING
|
||||
|| attributes.metadata.getRace() == Race.CHANGELING) {
|
||||
return;
|
||||
}
|
||||
|
||||
limbSpeed = MathHelper.clamp(limbSpeed, 0, 1);
|
||||
|
||||
float forwardFold = 0.14F * limbSpeed;
|
||||
|
|
Loading…
Reference in a new issue