mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-20 09:57:43 +01:00
Rebuild patches
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
From 73d1754370dbdf1b4819c96e880a047eee045610 Mon Sep 17 00:00:00 2001
|
||||
From 2f733e203b811f198f28e10bf8c98c3bb23ed07c Mon Sep 17 00:00:00 2001
|
||||
From: William Blake Galbreath <blake.galbreath@gmail.com>
|
||||
Date: Tue, 30 Apr 2019 19:17:21 -0500
|
||||
Subject: [PATCH] Integrate ridables
|
||||
@@ -9,7 +9,7 @@ Subject: [PATCH] Integrate ridables
|
||||
.../server/ControllerLookDolphin.java | 4 +-
|
||||
.../java/net/minecraft/server/Entity.java | 15 +-
|
||||
.../net/minecraft/server/EntityChicken.java | 17 +-
|
||||
.../java/net/minecraft/server/EntityCow.java | 20 +-
|
||||
.../java/net/minecraft/server/EntityCow.java | 16 +-
|
||||
.../net/minecraft/server/EntityCreeper.java | 14 ++
|
||||
.../net/minecraft/server/EntityDolphin.java | 27 ++-
|
||||
.../net/minecraft/server/EntityDrowned.java | 9 +-
|
||||
@@ -53,7 +53,7 @@ Subject: [PATCH] Integrate ridables
|
||||
.../controller/ControllerMoveWASDFlying.java | 58 +++++
|
||||
.../controller/ControllerMoveWASDWater.java | 42 ++++
|
||||
.../craftbukkit/entity/CraftLivingEntity.java | 10 +
|
||||
49 files changed, 1138 insertions(+), 69 deletions(-)
|
||||
49 files changed, 1136 insertions(+), 67 deletions(-)
|
||||
create mode 100644 src/main/java/net/pl3x/purpur/controller/ControllerLookWASD.java
|
||||
create mode 100644 src/main/java/net/pl3x/purpur/controller/ControllerMoveWASD.java
|
||||
create mode 100644 src/main/java/net/pl3x/purpur/controller/ControllerMoveWASDFlying.java
|
||||
@@ -222,7 +222,7 @@ index a374c3051..4ab6b4fc4 100644
|
||||
public void b(float f, float f1) {}
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/EntityCow.java b/src/main/java/net/minecraft/server/EntityCow.java
|
||||
index 0139688c7..4e70a2fc8 100644
|
||||
index 55169d564..4e70a2fc8 100644
|
||||
--- a/src/main/java/net/minecraft/server/EntityCow.java
|
||||
+++ b/src/main/java/net/minecraft/server/EntityCow.java
|
||||
@@ -9,6 +9,11 @@ public class EntityCow extends EntityAnimal {
|
||||
@@ -253,17 +253,6 @@ index 0139688c7..4e70a2fc8 100644
|
||||
ItemStack itemstack = entityhuman.b(enumhand);
|
||||
|
||||
if (itemstack.getItem() == Items.BUCKET && !entityhuman.abilities.canInstantlyBuild && !this.isBaby()) {
|
||||
@@ -99,8 +113,8 @@ public class EntityCow extends EntityAnimal {
|
||||
mooshroom.setHealth(this.getHealth());
|
||||
mooshroom.setAge(getAge());
|
||||
mooshroom.u(this);
|
||||
- mooshroom.aQ = this.aQ;
|
||||
- mooshroom.aS = this.aS;
|
||||
+ mooshroom.aK = this.aK;
|
||||
+ mooshroom.aM = this.aM;
|
||||
mooshroom.lastYaw = this.lastYaw;
|
||||
mooshroom.lastPitch = this.lastPitch;
|
||||
if (this.hasCustomName()) {
|
||||
@@ -116,7 +130,7 @@ public class EntityCow extends EntityAnimal {
|
||||
itemstack.subtract(1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user