geforkt von Mirrors/Paper
31 Zeilen
1.3 KiB
Diff
31 Zeilen
1.3 KiB
Diff
|
From 84cc56d8772b193ef1392b7b802b1e509996adb9 Mon Sep 17 00:00:00 2001
|
||
|
From: Andrew Krieger <Slizyboy@hotmail.com>
|
||
|
Date: Tue, 24 Dec 2013 07:55:23 -0800
|
||
|
Subject: [PATCH] Cross World Entity Teleportation
|
||
|
|
||
|
Use Entity.teleportTo for cross-world teleportation in CraftEntity.
|
||
|
|
||
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
|
||
|
index 96d763b..26a6253 100644
|
||
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
|
||
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
|
||
|
@@ -205,7 +205,14 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
- entity.world = ((CraftWorld) location.getWorld()).getHandle();
|
||
|
+ // Spigot start
|
||
|
+ if (!location.getWorld().equals(getWorld())) {
|
||
|
+ entity.teleportTo(location, cause.equals(TeleportCause.NETHER_PORTAL));
|
||
|
+ return true;
|
||
|
+ }
|
||
|
+
|
||
|
+ // entity.world = ((CraftWorld) location.getWorld()).getHandle();
|
||
|
+ // Spigot end
|
||
|
entity.setLocation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
|
||
|
// entity.setLocation() throws no event, and so cannot be cancelled
|
||
|
return true;
|
||
|
--
|
||
|
1.9.1
|
||
|
|