3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 20:40:07 +01:00

SPIGOT-4566: Don't special case NETHER_PORTAL teleport reason from plugins

Dieser Commit ist enthalten in:
md_5 2019-01-08 09:26:34 +11:00
Ursprung f17d591cc9
Commit b15abb12cb

Datei anzeigen

@ -308,7 +308,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
// Let the server handle cross world teleports
if (!location.getWorld().equals(getWorld())) {
entity.teleportTo(location, cause == TeleportCause.NETHER_PORTAL);
entity.teleportTo(location, false);
return true;
}