mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-18 17:07:43 +01:00
32 lines
1.5 KiB
Diff
32 lines
1.5 KiB
Diff
From 1e6fed4c8ec31bc74507375d2da965338dcb24cb Mon Sep 17 00:00:00 2001
|
|
From: William Blake Galbreath <blake.galbreath@gmail.com>
|
|
Date: Fri, 3 May 2019 23:53:16 -0500
|
|
Subject: [PATCH] Fix cow rotation when shearing mooshroom
|
|
|
|
---
|
|
src/main/java/net/minecraft/server/EntityMushroomCow.java | 8 +++++++-
|
|
1 file changed, 7 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityMushroomCow.java b/src/main/java/net/minecraft/server/EntityMushroomCow.java
|
|
index b20f4afd3f..02d76a6c61 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityMushroomCow.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityMushroomCow.java
|
|
@@ -118,7 +118,13 @@ public class EntityMushroomCow extends EntityCow {
|
|
|
|
entitycow.setPositionRotation(this.locX(), this.locY(), this.locZ(), this.yaw, this.pitch);
|
|
entitycow.setHealth(this.getHealth());
|
|
- entitycow.aI = this.aI;
|
|
+ // Purpur start - correctly copy rotation
|
|
+ entitycow.copyPositionRotation(this);
|
|
+ entitycow.setRenderYawOffset(this.getRenderYawOffset());
|
|
+ entitycow.setHeadRotation(this.getHeadRotation());
|
|
+ entitycow.lastYaw = this.lastYaw;
|
|
+ entitycow.lastPitch = this.lastPitch;
|
|
+ // Purpur end
|
|
if (this.hasCustomName()) {
|
|
entitycow.setCustomName(this.getCustomName());
|
|
entitycow.setCustomNameVisible(this.getCustomNameVisible());
|
|
--
|
|
2.24.0
|
|
|