2019-04-22 23:36:14 +02:00
|
|
|
From 9fa77cfb17de18c16aaa9f1bf8a73f2a841c3ef8 Mon Sep 17 00:00:00 2001
|
2017-05-17 04:34:47 +02:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Tue, 16 May 2017 21:29:08 -0500
|
|
|
|
Subject: [PATCH] Add option to make parrots stay on shoulders despite movement
|
|
|
|
|
|
|
|
Makes parrots not fall off whenever the player changes height, or touches water, or gets hit by a passing leaf.
|
|
|
|
Instead, switches the behavior so that players have to sneak to make the birds leave.
|
|
|
|
|
|
|
|
I suspect Mojang may switch to this behavior before full release.
|
|
|
|
|
|
|
|
To be converted into a Paper-API event at some point in the future?
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-04-22 23:36:14 +02:00
|
|
|
index 72eb530d7e..8ff454e259 100644
|
2017-05-17 04:34:47 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-04-05 07:27:37 +02:00
|
|
|
@@ -375,4 +375,10 @@ public class PaperWorldConfig {
|
2017-05-17 04:34:47 +02:00
|
|
|
maxCollisionsPerEntity = getInt( "max-entity-collisions", this.spigotConfig.getInt("max-entity-collisions", 8) );
|
|
|
|
log( "Max Entity Collisions: " + maxCollisionsPerEntity );
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean parrotsHangOnBetter;
|
|
|
|
+ private void parrotsHangOnBetter() {
|
|
|
|
+ parrotsHangOnBetter = getBoolean("parrots-are-unaffected-by-player-movement", false);
|
|
|
|
+ log("Parrots are unaffected by player movement: " + parrotsHangOnBetter);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityHuman.java b/src/main/java/net/minecraft/server/EntityHuman.java
|
2019-04-22 23:36:14 +02:00
|
|
|
index 5e5a747e9f..23e7cdfe88 100644
|
2017-05-17 04:34:47 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityHuman.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityHuman.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -465,7 +465,7 @@ public abstract class EntityHuman extends EntityLiving {
|
2017-05-17 04:34:47 +02:00
|
|
|
this.j(this.getShoulderEntityLeft());
|
|
|
|
this.j(this.getShoulderEntityRight());
|
2017-05-31 10:04:52 +02:00
|
|
|
if (!this.world.isClientSide && (this.fallDistance > 0.5F || this.isInWater() || this.isPassenger()) || this.abilities.isFlying) {
|
2017-05-17 04:34:47 +02:00
|
|
|
- this.releaseShoulderEntities();
|
|
|
|
+ if (!this.world.paperConfig.parrotsHangOnBetter) this.releaseShoulderEntities(); // Paper - Hang on!
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2019-04-22 23:36:14 +02:00
|
|
|
index 05cc5afea6..ac64fcfb31 100644
|
2017-05-17 04:34:47 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2019-04-22 23:36:14 +02:00
|
|
|
@@ -1736,6 +1736,13 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable {
|
2018-07-18 02:08:13 +02:00
|
|
|
switch (packetplayinentityaction.c()) {
|
2017-05-17 04:34:47 +02:00
|
|
|
case START_SNEAKING:
|
|
|
|
this.player.setSneaking(true);
|
|
|
|
+
|
|
|
|
+ // Paper start - Hang on!
|
|
|
|
+ if (this.player.world.paperConfig.parrotsHangOnBetter) {
|
|
|
|
+ this.player.releaseShoulderEntities();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
break;
|
|
|
|
case STOP_SNEAKING:
|
2018-12-08 11:09:55 +01:00
|
|
|
this.player.setSneaking(false);
|
2017-05-17 04:34:47 +02:00
|
|
|
--
|
2019-03-20 02:46:00 +01:00
|
|
|
2.21.0
|
2017-05-17 04:34:47 +02:00
|
|
|
|