2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/world/entity/projectile/EntityEnderPearl.java
|
|
|
|
+++ b/net/minecraft/world/entity/projectile/EntityEnderPearl.java
|
|
|
|
@@ -17,6 +17,13 @@
|
|
|
|
import net.minecraft.world.phys.MovingObjectPosition;
|
|
|
|
import net.minecraft.world.phys.MovingObjectPositionEntity;
|
2021-03-08 22:47:33 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.Bukkit;
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
2016-07-01 04:30:28 +02:00
|
|
|
+import org.bukkit.event.entity.CreatureSpawnEvent;
|
2014-11-25 22:32:16 +01:00
|
|
|
+import org.bukkit.event.player.PlayerTeleportEvent;
|
|
|
|
+// CraftBukkit end
|
2021-03-08 22:47:33 +01:00
|
|
|
+
|
2019-04-23 04:00:00 +02:00
|
|
|
public class EntityEnderPearl extends EntityProjectileThrowable {
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2021-03-08 22:47:33 +01:00
|
|
|
public EntityEnderPearl(EntityTypes<? extends EntityEnderPearl> entitytypes, World world) {
|
2021-06-11 07:00:00 +02:00
|
|
|
@@ -53,21 +60,34 @@
|
2020-06-25 02:00:00 +02:00
|
|
|
EntityPlayer entityplayer = (EntityPlayer) entity;
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2021-11-21 23:00:00 +01:00
|
|
|
if (entityplayer.connection.getConnection().isConnected() && entityplayer.level == this.level && !entityplayer.isSleeping()) {
|
2021-06-11 07:00:00 +02:00
|
|
|
- if (this.random.nextFloat() < 0.05F && this.level.getGameRules().getBoolean(GameRules.RULE_DOMOBSPAWNING)) {
|
2021-11-21 23:00:00 +01:00
|
|
|
- EntityEndermite entityendermite = (EntityEndermite) EntityTypes.ENDERMITE.create(this.level);
|
2021-06-11 07:00:00 +02:00
|
|
|
-
|
2021-11-21 23:00:00 +01:00
|
|
|
- entityendermite.moveTo(entity.getX(), entity.getY(), entity.getZ(), entity.getYRot(), entity.getXRot());
|
|
|
|
- this.level.addFreshEntity(entityendermite);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start - Fire PlayerTeleportEvent
|
|
|
|
+ org.bukkit.craftbukkit.entity.CraftPlayer player = entityplayer.getBukkitEntity();
|
|
|
|
+ org.bukkit.Location location = getBukkitEntity().getLocation();
|
|
|
|
+ location.setPitch(player.getLocation().getPitch());
|
|
|
|
+ location.setYaw(player.getLocation().getYaw());
|
|
|
|
+
|
|
|
|
+ PlayerTeleportEvent teleEvent = new PlayerTeleportEvent(player, player.getLocation(), location, PlayerTeleportEvent.TeleportCause.ENDER_PEARL);
|
|
|
|
+ Bukkit.getPluginManager().callEvent(teleEvent);
|
|
|
|
+
|
2021-06-11 07:00:00 +02:00
|
|
|
+ if (!teleEvent.isCancelled() && !entityplayer.connection.isDisconnected()) {
|
|
|
|
+ if (this.random.nextFloat() < 0.05F && this.level.getGameRules().getBoolean(GameRules.RULE_DOMOBSPAWNING)) {
|
2021-11-21 23:00:00 +01:00
|
|
|
+ EntityEndermite entityendermite = (EntityEndermite) EntityTypes.ENDERMITE.create(this.level);
|
2021-06-11 07:00:00 +02:00
|
|
|
+
|
2021-11-21 23:00:00 +01:00
|
|
|
+ entityendermite.moveTo(entity.getX(), entity.getY(), entity.getZ(), entity.getYRot(), entity.getXRot());
|
|
|
|
+ this.level.addFreshEntity(entityendermite, CreatureSpawnEvent.SpawnReason.ENDER_PEARL);
|
2015-05-21 09:28:21 +02:00
|
|
|
+ }
|
2021-06-11 07:00:00 +02:00
|
|
|
+
|
2020-06-25 02:00:00 +02:00
|
|
|
+ if (entity.isPassenger()) {
|
|
|
|
+ entity.stopRiding();
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+
|
2021-06-11 07:00:00 +02:00
|
|
|
+ entityplayer.connection.teleport(teleEvent.getTo());
|
2021-11-21 23:00:00 +01:00
|
|
|
+ entity.resetFallDistance();
|
2014-11-25 22:32:16 +01:00
|
|
|
+ CraftEventFactory.entityDamage = this;
|
2021-11-21 23:00:00 +01:00
|
|
|
+ entity.hurt(DamageSource.FALL, 5.0F);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ CraftEventFactory.entityDamage = null;
|
|
|
|
}
|
2016-03-02 17:48:00 +01:00
|
|
|
-
|
2021-06-11 07:00:00 +02:00
|
|
|
- if (entity.isPassenger()) {
|
2021-11-21 23:00:00 +01:00
|
|
|
- entityplayer.dismountTo(this.getX(), this.getY(), this.getZ());
|
2021-06-11 07:00:00 +02:00
|
|
|
- } else {
|
2021-11-21 23:00:00 +01:00
|
|
|
- entity.teleportTo(this.getX(), this.getY(), this.getZ());
|
2021-06-11 07:00:00 +02:00
|
|
|
- }
|
|
|
|
-
|
2021-11-21 23:00:00 +01:00
|
|
|
- entity.resetFallDistance();
|
|
|
|
- entity.hurt(DamageSource.FALL, 5.0F);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit end
|
2016-03-02 17:48:00 +01:00
|
|
|
}
|
2020-06-25 02:00:00 +02:00
|
|
|
} else if (entity != null) {
|
2021-11-21 23:00:00 +01:00
|
|
|
entity.teleportTo(this.getX(), this.getY(), this.getZ());
|
2021-06-11 07:00:00 +02:00
|
|
|
@@ -96,7 +116,7 @@
|
2021-11-21 23:00:00 +01:00
|
|
|
public Entity changeDimension(WorldServer worldserver) {
|
|
|
|
Entity entity = this.getOwner();
|
2020-08-28 04:28:06 +02:00
|
|
|
|
2021-11-21 23:00:00 +01:00
|
|
|
- if (entity != null && entity.level.dimension() != worldserver.dimension()) {
|
|
|
|
+ if (entity != null && worldserver != null && entity.level.dimension() != worldserver.dimension()) { // CraftBukkit - SPIGOT-6113
|
|
|
|
this.setOwner((Entity) null);
|
2020-08-28 04:28:06 +02:00
|
|
|
}
|
|
|
|
|