2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
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
|
|
|
|
index c611b5a63498f5ad1f50a75ccd5d7299e27df7e3..9d1cddc6038f0fd0286e4a32013ae98ff0b00dd1 100644
|
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
@@ -330,4 +330,10 @@ public class PaperWorldConfig {
|
|
|
|
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/network/ServerGamePacketListenerImpl.java b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
2021-07-07 08:52:40 +02:00
|
|
|
index 6eb01dcf59fda2656b6d93b0c39380302665f930..41f1b355a8a90216964e89432244a7d6929c9152 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
2021-07-07 08:52:40 +02:00
|
|
|
@@ -2044,6 +2044,13 @@ public class ServerGamePacketListenerImpl implements ServerPlayerConnection, Ser
|
2021-06-11 14:02:28 +02:00
|
|
|
switch (packet.getAction()) {
|
|
|
|
case PRESS_SHIFT_KEY:
|
|
|
|
this.player.setShiftKeyDown(true);
|
|
|
|
+
|
2021-06-12 11:17:20 +02:00
|
|
|
+ // Paper start - Hang on!
|
|
|
|
+ if (this.player.level.paperConfig.parrotsHangOnBetter) {
|
|
|
|
+ this.player.removeEntitiesOnShoulder();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
break;
|
|
|
|
case RELEASE_SHIFT_KEY:
|
|
|
|
this.player.setShiftKeyDown(false);
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/player/Player.java b/src/main/java/net/minecraft/world/entity/player/Player.java
|
2021-07-07 08:52:40 +02:00
|
|
|
index c825ad2d04b964561355cb0564f9f5507848217f..273bb051c3f19e388ccea367ef6b46b509015abd 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/player/Player.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/player/Player.java
|
2021-06-12 11:17:20 +02:00
|
|
|
@@ -579,7 +579,7 @@ public abstract class Player extends LivingEntity {
|
2021-06-11 14:02:28 +02:00
|
|
|
this.playShoulderEntityAmbientSound(this.getShoulderEntityLeft());
|
|
|
|
this.playShoulderEntityAmbientSound(this.getShoulderEntityRight());
|
2021-06-12 11:17:20 +02:00
|
|
|
if (!this.level.isClientSide && (this.fallDistance > 0.5F || this.isInWater()) || this.abilities.flying || this.isSleeping() || this.isInPowderSnow) {
|
2021-06-11 14:02:28 +02:00
|
|
|
- this.removeEntitiesOnShoulder();
|
|
|
|
+ if (!this.level.paperConfig.parrotsHangOnBetter) this.removeEntitiesOnShoulder(); // Paper - Hang on!
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|