2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityProjectile.java
|
|
|
|
+++ b/net/minecraft/server/EntityProjectile.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -35,6 +35,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
public EntityProjectile(World world, EntityLiving entityliving) {
|
2016-02-29 22:32:46 +01:00
|
|
|
this(world, entityliving.locX, entityliving.locY + (double) entityliving.getHeadHeight() - 0.10000000149011612D, entityliving.locZ);
|
2014-11-25 22:32:16 +01:00
|
|
|
this.shooter = entityliving;
|
|
|
|
+ this.projectileSource = (org.bukkit.entity.LivingEntity) entityliving.getBukkitEntity(); // CraftBukkit
|
2016-02-29 22:32:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void i() {}
|
2016-12-22 22:29:23 +01:00
|
|
|
@@ -127,7 +128,7 @@
|
|
|
|
if (entity1.isInteractable()) {
|
|
|
|
if (entity1 == this.c) {
|
|
|
|
flag = true;
|
|
|
|
- } else if (this.shooter != null && this.ticksLived < 2 && this.c == null) {
|
|
|
|
+ } else if (this.shooter != null && this.ticksLived < 2 && this.c == null && this.shooter == entity1) { // CraftBukkit - MC-88491
|
|
|
|
this.c = entity1;
|
|
|
|
flag = true;
|
|
|
|
} else {
|
2016-06-09 03:43:49 +02:00
|
|
|
@@ -164,6 +165,11 @@
|
2016-02-29 22:32:46 +01:00
|
|
|
this.e(movingobjectposition.a());
|
2014-11-25 22:32:16 +01:00
|
|
|
} else {
|
|
|
|
this.a(movingobjectposition);
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (this.dead) {
|
2016-11-28 02:47:01 +01:00
|
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.callProjectileHitEvent(this, movingobjectposition);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|