2011-12-02 00:34:14 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2012-03-11 06:10:01 +01:00
|
|
|
// CraftBukkit start
|
2011-12-02 00:34:14 +01:00
|
|
|
import org.bukkit.Bukkit;
|
2011-12-11 06:52:55 +01:00
|
|
|
import org.bukkit.event.entity.EntityDamageByEntityEvent;
|
2011-12-04 12:04:14 +01:00
|
|
|
import org.bukkit.event.player.PlayerTeleportEvent;
|
2012-03-11 06:10:01 +01:00
|
|
|
// CraftBukkit end
|
2011-12-02 00:34:14 +01:00
|
|
|
|
|
|
|
public class EntityEnderPearl extends EntityProjectile {
|
2012-01-12 23:10:13 +01:00
|
|
|
|
2011-12-02 00:34:14 +01:00
|
|
|
public EntityEnderPearl(World world) {
|
|
|
|
super(world);
|
|
|
|
}
|
|
|
|
|
|
|
|
public EntityEnderPearl(World world, EntityLiving entityliving) {
|
|
|
|
super(world, entityliving);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void a(MovingObjectPosition movingobjectposition) {
|
2012-07-29 09:33:13 +02:00
|
|
|
if (movingobjectposition.entity != null) {
|
2012-11-06 13:05:28 +01:00
|
|
|
movingobjectposition.entity.damageEntity(DamageSource.projectile(this, this.getShooter()), 0);
|
2011-12-02 00:34:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < 32; ++i) {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.world.addParticle("portal", this.locX, this.locY + this.random.nextDouble() * 2.0D, this.locZ, this.random.nextGaussian(), 0.0D, this.random.nextGaussian());
|
2011-12-02 00:34:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.world.isStatic) {
|
2012-11-06 13:05:28 +01:00
|
|
|
if (this.getShooter() != null && this.getShooter() instanceof EntityPlayer) {
|
|
|
|
EntityPlayer entityplayer = (EntityPlayer) this.getShooter();
|
2011-12-04 12:04:14 +01:00
|
|
|
|
2012-12-20 05:03:52 +01:00
|
|
|
if (!entityplayer.playerConnection.disconnected && entityplayer.world == this.world) {
|
2012-07-29 09:33:13 +02:00
|
|
|
// CraftBukkit start
|
2012-09-14 07:03:47 +02:00
|
|
|
org.bukkit.craftbukkit.entity.CraftPlayer player = entityplayer.getBukkitEntity();
|
2012-07-22 08:18:00 +02:00
|
|
|
org.bukkit.Location location = getBukkitEntity().getLocation();
|
2012-03-11 06:10:01 +01:00
|
|
|
location.setPitch(player.getLocation().getPitch());
|
|
|
|
location.setYaw(player.getLocation().getYaw());
|
2011-12-11 06:52:55 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
PlayerTeleportEvent teleEvent = new PlayerTeleportEvent(player, player.getLocation(), location, PlayerTeleportEvent.TeleportCause.ENDER_PEARL);
|
|
|
|
Bukkit.getPluginManager().callEvent(teleEvent);
|
2012-08-22 21:17:36 +02:00
|
|
|
|
2012-12-20 05:03:52 +01:00
|
|
|
if (!teleEvent.isCancelled() && !entityplayer.playerConnection.disconnected) {
|
|
|
|
entityplayer.playerConnection.teleport(teleEvent.getTo());
|
2012-11-06 13:05:28 +01:00
|
|
|
this.getShooter().fallDistance = 0.0F;
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
EntityDamageByEntityEvent damageEvent = new EntityDamageByEntityEvent(this.getBukkitEntity(), player, EntityDamageByEntityEvent.DamageCause.FALL, 5.0D);
|
2012-07-29 09:33:13 +02:00
|
|
|
Bukkit.getPluginManager().callEvent(damageEvent);
|
|
|
|
|
2012-12-20 05:03:52 +01:00
|
|
|
if (!damageEvent.isCancelled() && !entityplayer.playerConnection.disconnected) {
|
2012-08-22 21:17:36 +02:00
|
|
|
entityplayer.invulnerableTicks = -1; // Remove spawning invulnerability
|
|
|
|
player.setLastDamageCause(damageEvent);
|
2013-07-01 13:03:00 +02:00
|
|
|
entityplayer.damageEntity(DamageSource.FALL, (float) damageEvent.getDamage());
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
2011-12-04 12:04:14 +01:00
|
|
|
}
|
2012-07-29 09:33:13 +02:00
|
|
|
// CraftBukkit end
|
2011-12-02 01:06:27 +01:00
|
|
|
}
|
2011-12-02 00:34:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
this.die();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|