summaryrefslogtreecommitdiffstats
path: root/nms-patches/EntityEnderPearl.patch
blob: 230bf6e6a7b95de364a73dc3f840e1c4253c92d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
--- ../work/decompile-8eb82bde//net/minecraft/server/EntityEnderPearl.java	2014-11-28 11:22:55.902823164 +0000
+++ src/main/java/net/minecraft/server/EntityEnderPearl.java	2014-11-28 11:01:54.000000000 +0000
@@ -1,5 +1,11 @@
 package net.minecraft.server;
 
+// CraftBukkit start
+import org.bukkit.Bukkit;
+import org.bukkit.craftbukkit.event.CraftEventFactory;
+import org.bukkit.event.player.PlayerTeleportEvent;
+// CraftBukkit end
+
 public class EntityEnderPearl extends EntityProjectile {
 
     public EntityEnderPearl(World world, EntityLiving entityliving) {
@@ -29,14 +35,28 @@
                         entityendermite.setPositionRotation(entityliving.locX, entityliving.locY, entityliving.locZ, entityliving.yaw, entityliving.pitch);
                         this.world.addEntity(entityendermite);
                     }
-
-                    if (entityliving.av()) {
-                        entityliving.mount((Entity) null);
+                    
+                    // 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);
+
+                    if (!teleEvent.isCancelled() && !entityplayer.playerConnection.isDisconnected()) {
+                        if (entityliving.av()) {
+                            entityliving.mount((Entity) null);
+                        }
+
+                        entityplayer.playerConnection.teleport(teleEvent.getTo());
+                        entityliving.fallDistance = 0.0F;
+                        CraftEventFactory.entityDamage = this;
+                        entityliving.damageEntity(DamageSource.FALL, 5.0F);
+                        CraftEventFactory.entityDamage = null;
                     }
-
-                    entityliving.enderTeleportTo(this.locX, this.locY, this.locZ);
-                    entityliving.fallDistance = 0.0F;
-                    entityliving.damageEntity(DamageSource.FALL, 5.0F);
+                    // CraftBukkit end
                 }
             }