From d02fb4e971d00981f25622dbf0feb76cd7345b67 Mon Sep 17 00:00:00 2001 From: Aikar Date: Mon, 4 Jan 2016 00:23:17 -0600 Subject: [PATCH] Entity teleport fix --- ...ntity-Chunk-Registration-on-Teleport.patch | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Spigot-Server-Patches/0078-Process-Entity-Chunk-Registration-on-Teleport.patch diff --git a/Spigot-Server-Patches/0078-Process-Entity-Chunk-Registration-on-Teleport.patch b/Spigot-Server-Patches/0078-Process-Entity-Chunk-Registration-on-Teleport.patch new file mode 100644 index 0000000000..2185f5df82 --- /dev/null +++ b/Spigot-Server-Patches/0078-Process-Entity-Chunk-Registration-on-Teleport.patch @@ -0,0 +1,22 @@ +From 537501dd12855cf8648c87985aa4162ee9182457 Mon Sep 17 00:00:00 2001 +From: Aikar +Date: Mon, 4 Jan 2016 00:16:08 -0600 +Subject: [PATCH] Process Entity Chunk Registration on Teleport + +Fixes many issues with entities not being properly "switched" to their new chunk on teleport + +diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java +index efbf1a8..5df3476 100644 +--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java ++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java +@@ -243,6 +243,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity { + // entity.world = ((CraftWorld) location.getWorld()).getHandle(); + // Spigot end + entity.setLocation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch()); ++ entity.world.entityJoinedWorld(entity, false); // PaperSpigot - Fix issues with entities not being switched to their new chunk + // entity.setLocation() throws no event, and so cannot be cancelled + return true; + } +-- +2.6.4 +