aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0892-Expand-Pose-API.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0892-Expand-Pose-API.patch')
-rw-r--r--patches/server/0892-Expand-Pose-API.patch51
1 files changed, 51 insertions, 0 deletions
diff --git a/patches/server/0892-Expand-Pose-API.patch b/patches/server/0892-Expand-Pose-API.patch
new file mode 100644
index 0000000000..21ecedeaeb
--- /dev/null
+++ b/patches/server/0892-Expand-Pose-API.patch
@@ -0,0 +1,51 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: SoSeDiK <[email protected]>
+Date: Wed, 11 Jan 2023 20:59:01 +0200
+Subject: [PATCH] Expand Pose API
+
+
+diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
+index b2c2d45bf390b9968dbb20c150b1fac2559a08a7..7f2ffffa270f493224ea97fcd0e862baf36ae40c 100644
+--- a/src/main/java/net/minecraft/world/entity/Entity.java
++++ b/src/main/java/net/minecraft/world/entity/Entity.java
+@@ -421,6 +421,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
+ @javax.annotation.Nullable
+ private UUID originWorld;
+ public boolean freezeLocked = false; // Paper - Freeze Tick Lock API
++ public boolean fixedPose = false; // Paper - Expand Pose API
+
+ public void setOrigin(@javax.annotation.Nonnull Location location) {
+ this.origin = location.toVector();
+@@ -644,6 +645,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
+ public void onClientRemoval() {}
+
+ public void setPose(net.minecraft.world.entity.Pose pose) {
++ if (this.fixedPose) return; // Paper - Expand Pose API
+ // CraftBukkit start
+ if (pose == this.getPose()) {
+ return;
+diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
+index 96448895a0a18e6f819d0a2a629c04abd331fa85..d52b7c5739b8ea51cb91c45ddcad6237b9ce5a5e 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
+@@ -897,6 +897,20 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
+ public boolean isSneaking() {
+ return this.getHandle().isShiftKeyDown();
+ }
++
++ @Override
++ public void setPose(Pose pose, boolean fixed) {
++ Preconditions.checkNotNull(pose, "Pose cannot be null");
++ final Entity handle = this.getHandle();
++ handle.fixedPose = false;
++ handle.setPose(net.minecraft.world.entity.Pose.values()[pose.ordinal()]);
++ handle.fixedPose = fixed;
++ }
++
++ @Override
++ public boolean hasFixedPose() {
++ return this.getHandle().fixedPose;
++ }
+ // Paper end
+
+ @Override