mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-08-31 21:49:13 +00:00
30 lines
1.4 KiB
Diff
30 lines
1.4 KiB
Diff
From 7a12ff1d5c39a3721873ad7c1f4d7f96975dcb51 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 91d165746..eef88cea6 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
|
|
@@ -297,7 +297,14 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
|
// If this entity is riding another entity, we must dismount before teleporting.
|
|
entity.stopRiding();
|
|
|
|
- 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() throws no event, and so cannot be cancelled
|
|
entity.setLocation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
|
|
// SPIGOT-619: Force sync head rotation also
|
|
--
|
|
2.17.1
|
|
|