mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-25 22:07:59 +01:00
Update yarn mappings
This commit is contained in:
parent
6972aff1b6
commit
d6233c5266
5 changed files with 2 additions and 20 deletions
|
@ -4,7 +4,7 @@ org.gradle.daemon=false
|
|||
# Fabric Properties
|
||||
# check these on https://fabricmc.net/use
|
||||
minecraft_version=1.15-pre1
|
||||
yarn_mappings=1.15-pre1+build.3:v2
|
||||
yarn_mappings=1.15-pre1+build.7:v2
|
||||
loader_version=0.7.1+build.173
|
||||
|
||||
# Mod Properties
|
||||
|
|
|
@ -38,12 +38,6 @@ public abstract class ClientPonyModel<T extends LivingEntity> extends MsonPlayer
|
|||
attributes.updateLivingState(entity, pony);
|
||||
}
|
||||
|
||||
// Broken bridge
|
||||
@Override
|
||||
public void setAngles(T entity, float move, float swing, float ticks, float headYaw, float headPitch) {
|
||||
super.method_17087(entity, move, swing, ticks, headYaw, headPitch);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ModelAttributes<?> getAttributes() {
|
||||
return attributes;
|
||||
|
|
|
@ -30,12 +30,6 @@ public class PonyElytra<T extends LivingEntity> extends AnimalModel<T> {
|
|||
return ImmutableList.of(leftWing, rightWing);
|
||||
}
|
||||
|
||||
// broken bridge
|
||||
@Override
|
||||
public void accept(ModelPart t) {
|
||||
super.method_22696(t);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the model's various rotation angles.
|
||||
*
|
||||
|
|
|
@ -28,12 +28,6 @@ public class ModelBreezie<T extends LivingEntity> extends BipedEntityModel<T> im
|
|||
textureHeight = 64;
|
||||
}
|
||||
|
||||
// broken bridge
|
||||
@Override
|
||||
public void accept(ModelPart t) {
|
||||
super.method_22696(t);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init(ModelContext context) {
|
||||
neck = context.findByName("neck");
|
||||
|
|
|
@ -24,6 +24,6 @@ public class RenderPonyTrader extends RenderPonyMob.Caster<WanderingTraderEntity
|
|||
@Override
|
||||
public void scale(WanderingTraderEntity entity, MatrixStack stack, float ticks) {
|
||||
super.scale(entity, stack, ticks);
|
||||
stack.scale(0.9375F, 0.9375F, 0.9375F);
|
||||
stack.scale(BASE_MODEL_SCALE, BASE_MODEL_SCALE, BASE_MODEL_SCALE);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue