aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0640-Forward-CraftEntity-in-teleport-command.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0640-Forward-CraftEntity-in-teleport-command.patch')
-rw-r--r--patches/server/0640-Forward-CraftEntity-in-teleport-command.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/patches/server/0640-Forward-CraftEntity-in-teleport-command.patch b/patches/server/0640-Forward-CraftEntity-in-teleport-command.patch
new file mode 100644
index 0000000000..5628023ff7
--- /dev/null
+++ b/patches/server/0640-Forward-CraftEntity-in-teleport-command.patch
@@ -0,0 +1,35 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jake Potrebic <[email protected]>
+Date: Sat, 4 Dec 2021 17:04:47 -0800
+Subject: [PATCH] Forward CraftEntity in teleport command
+
+
+diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
+index b969b0a1c3768e43bda8b2fb297f022ebc8bc4ce..6d011de57725aec5ffffc35b3b94ec1b7c178861 100644
+--- a/src/main/java/net/minecraft/world/entity/Entity.java
++++ b/src/main/java/net/minecraft/world/entity/Entity.java
+@@ -3354,6 +3354,13 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
+ }
+
+ public void restoreFrom(Entity original) {
++ // Paper start - Forward CraftEntity in teleport command
++ CraftEntity bukkitEntity = original.bukkitEntity;
++ if (bukkitEntity != null) {
++ bukkitEntity.setHandle(this);
++ this.bukkitEntity = bukkitEntity;
++ }
++ // Paper end - Forward CraftEntity in teleport command
+ CompoundTag nbttagcompound = original.saveWithoutId(new CompoundTag());
+
+ nbttagcompound.remove("Dimension");
+@@ -3440,8 +3447,8 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
+ entity2.restoreFrom(this);
+ this.removeAfterChangingDimensions();
+ // CraftBukkit start - Forward the CraftEntity to the new entity
+- this.getBukkitEntity().setHandle(entity2);
+- entity2.bukkitEntity = this.getBukkitEntity();
++ // this.getBukkitEntity().setHandle(entity2); // Paper - forward CraftEntity in teleport command; moved to Entity#restoreFrom
++ // entity2.bukkitEntity = this.getBukkitEntity();
+ // CraftBukkit end
+ }
+