Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-17 05:20:05 +01:00
Fixed EnderPearls not being limited to the world they were used in. Fixes BUKKIT-658
Dieser Commit ist enthalten in:
Ursprung
8ecdfe9eed
Commit
f26fbc3bf3
@ -36,7 +36,7 @@ public class EntityEnderPearl extends EntityProjectile {
|
|||||||
if (this.shooter != null) {
|
if (this.shooter != null) {
|
||||||
if (this.shooter instanceof EntityPlayer) {
|
if (this.shooter instanceof EntityPlayer) {
|
||||||
CraftPlayer player = (CraftPlayer) this.shooter.bukkitEntity;
|
CraftPlayer player = (CraftPlayer) this.shooter.bukkitEntity;
|
||||||
teleport = player.isOnline();
|
teleport = player.isOnline() && player.getWorld() == getBukkitEntity().getWorld();
|
||||||
|
|
||||||
if (teleport) {
|
if (teleport) {
|
||||||
teleEvent = new PlayerTeleportEvent(player, player.getLocation(), getBukkitEntity().getLocation(), PlayerTeleportEvent.TeleportCause.ENDER_PEARL);
|
teleEvent = new PlayerTeleportEvent(player, player.getLocation(), getBukkitEntity().getLocation(), PlayerTeleportEvent.TeleportCause.ENDER_PEARL);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren