2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2021-01-11 02:44:06 +01:00
|
|
|
index c611b5a63498f5ad1f50a75ccd5d7299e27df7e3..9d1cddc6038f0fd0286e4a32013ae98ff0b00dd1 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
|
2021-01-11 02:44:06 +01:00
|
|
|
@@ -330,4 +330,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
|
2021-01-29 01:32:08 +01:00
|
|
|
index bc930015082ad6b2c5d744f823d9ad28a07fa5d4..63f3743bbf3632badf4e66a5ee4239ccbc5df700 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
|
2021-01-29 01:32:08 +01:00
|
|
|
@@ -434,7 +434,7 @@ public abstract class EntityHuman extends EntityLiving {
|
2017-05-17 04:34:47 +02:00
|
|
|
this.j(this.getShoulderEntityLeft());
|
|
|
|
this.j(this.getShoulderEntityRight());
|
2019-12-12 00:43:22 +01:00
|
|
|
if (!this.world.isClientSide && (this.fallDistance > 0.5F || this.isInWater()) || this.abilities.isFlying || this.isSleeping()) {
|
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
|
2021-02-22 19:24:44 +01:00
|
|
|
index e48d896974b6839e496deda320e5c470188b2754..833095238b2e08058573b777fc226278f187c103 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
|
2021-02-22 19:24:44 +01:00
|
|
|
@@ -1910,6 +1910,13 @@ public class PlayerConnection implements PacketListenerPlayIn {
|
2018-07-18 02:08:13 +02:00
|
|
|
switch (packetplayinentityaction.c()) {
|
2019-12-12 00:43:22 +01:00
|
|
|
case PRESS_SHIFT_KEY:
|
2019-05-28 01:01:45 +02:00
|
|
|
this.player.setSneaking(true);
|
2017-05-17 04:34:47 +02:00
|
|
|
+
|
|
|
|
+ // Paper start - Hang on!
|
|
|
|
+ if (this.player.world.paperConfig.parrotsHangOnBetter) {
|
|
|
|
+ this.player.releaseShoulderEntities();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
2019-05-28 01:01:45 +02:00
|
|
|
break;
|
2019-12-12 00:43:22 +01:00
|
|
|
case RELEASE_SHIFT_KEY:
|
2019-05-28 01:01:45 +02:00
|
|
|
this.player.setSneaking(false);
|