2016-03-31 00:50:23 +00:00
|
|
|
From 8cdfbcfe70be7d3748aa4b92e6a0a1bf48a03e51 Mon Sep 17 00:00:00 2001
|
2016-01-04 06:23:17 +00:00
|
|
|
From: Aikar <aikar@aikar.co>
|
2016-02-29 23:09:49 +00:00
|
|
|
Date: Thu, 3 Mar 2016 00:12:23 -0600
|
2016-01-04 06:23:17 +00:00
|
|
|
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
|
2016-03-29 01:01:42 +00:00
|
|
|
index f4168c4..b422b75 100644
|
2016-01-04 06:23:17 +00:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
|
2016-03-25 01:23:23 +00:00
|
|
|
@@ -242,6 +242,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
2016-01-04 06:23:17 +00:00
|
|
|
// entity.world = ((CraftWorld) location.getWorld()).getHandle();
|
|
|
|
// Spigot end
|
|
|
|
entity.setLocation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
|
2016-02-29 23:09:49 +00:00
|
|
|
+ entity.world.entityJoinedWorld(entity, false); // Paper - Fix issues with entities not being switched to their new chunk
|
2016-01-04 06:23:17 +00:00
|
|
|
// entity.setLocation() throws no event, and so cannot be cancelled
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
--
|
2016-03-31 00:50:23 +00:00
|
|
|
2.8.0
|
2016-01-04 06:23:17 +00:00
|
|
|
|