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-06-11 07:00:00 +02:00
|
|
|
if (entityplayer.connection.a().isConnected() && entityplayer.level == this.level && !entityplayer.isSleeping()) {
|
|
|
|
- if (this.random.nextFloat() < 0.05F && this.level.getGameRules().getBoolean(GameRules.RULE_DOMOBSPAWNING)) {
|
|
|
|
- EntityEndermite entityendermite = (EntityEndermite) EntityTypes.ENDERMITE.a(this.level);
|
|
|
|
-
|
|
|
|
- entityendermite.setPositionRotation(entity.locX(), entity.locY(), entity.locZ(), entity.getYRot(), entity.getXRot());
|
|
|
|
- this.level.addEntity(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)) {
|
|
|
|
+ EntityEndermite entityendermite = (EntityEndermite) EntityTypes.ENDERMITE.a(this.level);
|
|
|
|
+
|
|
|
|
+ entityendermite.setPositionRotation(entity.locX(), entity.locY(), entity.locZ(), entity.getYRot(), entity.getXRot());
|
|
|
|
+ this.level.addEntity(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());
|
2020-06-25 02:00:00 +02:00
|
|
|
+ entity.fallDistance = 0.0F;
|
2014-11-25 22:32:16 +01:00
|
|
|
+ CraftEventFactory.entityDamage = this;
|
2020-06-25 02:00:00 +02:00
|
|
|
+ entity.damageEntity(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()) {
|
|
|
|
- entityplayer.a(this.locX(), this.locY(), this.locZ());
|
|
|
|
- } else {
|
|
|
|
- entity.enderTeleportTo(this.locX(), this.locY(), this.locZ());
|
|
|
|
- }
|
|
|
|
-
|
2020-06-25 02:00:00 +02:00
|
|
|
- entity.fallDistance = 0.0F;
|
|
|
|
- entity.damageEntity(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) {
|
|
|
|
entity.enderTeleportTo(this.locX(), this.locY(), this.locZ());
|
2021-06-11 07:00:00 +02:00
|
|
|
@@ -96,7 +116,7 @@
|
2020-08-28 04:28:06 +02:00
|
|
|
public Entity b(WorldServer worldserver) {
|
|
|
|
Entity entity = this.getShooter();
|
|
|
|
|
2021-06-11 07:00:00 +02:00
|
|
|
- if (entity != null && entity.level.getDimensionKey() != worldserver.getDimensionKey()) {
|
|
|
|
+ if (entity != null && worldserver != null && entity.level.getDimensionKey() != worldserver.getDimensionKey()) { // CraftBukkit - SPIGOT-6113
|
2020-08-28 04:28:06 +02:00
|
|
|
this.setShooter((Entity) null);
|
|
|
|
}
|
|
|
|
|