Update yarn mappings

This commit is contained in:
Sollace 2019-11-26 11:54:20 +02:00
parent 6972aff1b6
commit d6233c5266
5 changed files with 2 additions and 20 deletions

View file

@ -4,7 +4,7 @@ org.gradle.daemon=false
# Fabric Properties # Fabric Properties
# check these on https://fabricmc.net/use # check these on https://fabricmc.net/use
minecraft_version=1.15-pre1 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 loader_version=0.7.1+build.173
# Mod Properties # Mod Properties

View file

@ -38,12 +38,6 @@ public abstract class ClientPonyModel<T extends LivingEntity> extends MsonPlayer
attributes.updateLivingState(entity, pony); 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 @Override
public ModelAttributes<?> getAttributes() { public ModelAttributes<?> getAttributes() {
return attributes; return attributes;

View file

@ -30,12 +30,6 @@ public class PonyElytra<T extends LivingEntity> extends AnimalModel<T> {
return ImmutableList.of(leftWing, rightWing); return ImmutableList.of(leftWing, rightWing);
} }
// broken bridge
@Override
public void accept(ModelPart t) {
super.method_22696(t);
}
/** /**
* Sets the model's various rotation angles. * Sets the model's various rotation angles.
* *

View file

@ -28,12 +28,6 @@ public class ModelBreezie<T extends LivingEntity> extends BipedEntityModel<T> im
textureHeight = 64; textureHeight = 64;
} }
// broken bridge
@Override
public void accept(ModelPart t) {
super.method_22696(t);
}
@Override @Override
public void init(ModelContext context) { public void init(ModelContext context) {
neck = context.findByName("neck"); neck = context.findByName("neck");

View file

@ -24,6 +24,6 @@ public class RenderPonyTrader extends RenderPonyMob.Caster<WanderingTraderEntity
@Override @Override
public void scale(WanderingTraderEntity entity, MatrixStack stack, float ticks) { public void scale(WanderingTraderEntity entity, MatrixStack stack, float ticks) {
super.scale(entity, stack, 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);
} }
} }