From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: William Blake Galbreath Date: Fri, 3 May 2019 23:53:16 -0500 Subject: [PATCH] Fix cow rotation when shearing mooshroom diff --git a/src/main/java/net/minecraft/world/entity/animal/MushroomCow.java b/src/main/java/net/minecraft/world/entity/animal/MushroomCow.java index 380fe61157048da5df1781a0622af290f8adbf82..1bf3f1cf537c75aa32d1531ee77a4d08ad4b69bf 100644 --- a/src/main/java/net/minecraft/world/entity/animal/MushroomCow.java +++ b/src/main/java/net/minecraft/world/entity/animal/MushroomCow.java @@ -202,7 +202,13 @@ public class MushroomCow extends Cow implements Shearable { entitycow.moveTo(this.getX(), this.getY(), this.getZ(), this.getYRot(), this.getXRot()); entitycow.setHealth(this.getHealth()); + // Purpur start + entitycow.copyPosition(this); entitycow.yBodyRot = this.yBodyRot; + entitycow.setYHeadRot(this.getYHeadRot()); + entitycow.yRotO = this.yRotO; + entitycow.xRotO = this.xRotO; + // Purpur end if (this.hasCustomName()) { entitycow.setCustomName(this.getCustomName()); entitycow.setCustomNameVisible(this.isCustomNameVisible());