mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-18 17:07:43 +01:00
Upstream has released updates that appear to apply and compile correctly Paper Changes: 840e72091 [CI-SKIP] [Auto] Rebuild Patches a33232d4a Add beacon activation and deactivation events (#5121) bc7ea673a Add internal channel initialization listeners (#5557) b28ad17ac Check for world change in MoveEvent API methods 3095c7592 [Auto] Updated Upstream (CraftBukkit) f56989c97 Add RespawnFlags to PlayerRespawnEvent (#5533) 7579c2667 Add more API to PlayerMoveEvent (#5553)
26 lines
1.4 KiB
Diff
26 lines
1.4 KiB
Diff
From 0000000000000000000000000000000000000000 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
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/animal/EntityMushroomCow.java b/src/main/java/net/minecraft/world/entity/animal/EntityMushroomCow.java
|
|
index 9face4480dcc89d9106ebe596020c1888350ef2d..d28d4d2c1eff2c130f49c2bce3c19da212dba5dc 100644
|
|
--- a/src/main/java/net/minecraft/world/entity/animal/EntityMushroomCow.java
|
|
+++ b/src/main/java/net/minecraft/world/entity/animal/EntityMushroomCow.java
|
|
@@ -172,7 +172,13 @@ public class EntityMushroomCow extends EntityCow implements IShearable {
|
|
|
|
entitycow.setPositionRotation(this.locX(), this.locY(), this.locZ(), this.yaw, this.pitch);
|
|
entitycow.setHealth(this.getHealth());
|
|
- entitycow.aA = this.aA;
|
|
+ // 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());
|