mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
82 lines
3.7 KiB
Diff
82 lines
3.7 KiB
Diff
--- a/net/minecraft/server/EntityArrow.java
|
|
+++ b/net/minecraft/server/EntityArrow.java
|
|
@@ -5,6 +5,12 @@
|
|
import java.util.List;
|
|
import javax.annotation.Nullable;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.entity.LivingEntity;
|
|
+import org.bukkit.event.entity.EntityCombustByEntityEvent;
|
|
+import org.bukkit.event.player.PlayerPickupArrowEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public abstract class EntityArrow extends Entity implements IProjectile {
|
|
|
|
private static final Predicate<Entity> f = Predicates.and(new Predicate[] { IEntitySelector.e, IEntitySelector.a, new Predicate() {
|
|
@@ -50,6 +56,7 @@
|
|
public EntityArrow(World world, EntityLiving entityliving) {
|
|
this(world, entityliving.locX, entityliving.locY + (double) entityliving.getHeadHeight() - 0.10000000149011612D, entityliving.locZ);
|
|
this.shooter = entityliving;
|
|
+ this.projectileSource = (LivingEntity) entityliving.getBukkitEntity(); // CraftBukkit
|
|
if (entityliving instanceof EntityHuman) {
|
|
this.fromPlayer = EntityArrow.PickupStatus.ALLOWED;
|
|
}
|
|
@@ -229,7 +236,7 @@
|
|
|
|
protected void a(MovingObjectPosition movingobjectposition) {
|
|
Entity entity = movingobjectposition.entity;
|
|
-
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.callProjectileHitEvent(this); // CraftBukkit - Call event
|
|
if (entity != null) {
|
|
float f = MathHelper.sqrt(this.motX * this.motX + this.motY * this.motY + this.motZ * this.motZ);
|
|
int i = MathHelper.f((double) f * this.damage);
|
|
@@ -247,7 +254,13 @@
|
|
}
|
|
|
|
if (this.isBurning() && !(entity instanceof EntityEnderman)) {
|
|
- entity.setOnFire(5);
|
|
+ // CraftBukkit start
|
|
+ EntityCombustByEntityEvent combustEvent = new EntityCombustByEntityEvent(this.getBukkitEntity(), entity.getBukkitEntity(), 5);
|
|
+ org.bukkit.Bukkit.getPluginManager().callEvent(combustEvent);
|
|
+ if (!combustEvent.isCancelled()) {
|
|
+ entity.setOnFire(combustEvent.getDuration());
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
if (entity.damageEntity(damagesource, (float) i)) {
|
|
@@ -397,6 +410,20 @@
|
|
|
|
public void d(EntityHuman entityhuman) {
|
|
if (!this.world.isClientSide && this.inGround && this.shake <= 0) {
|
|
+ // CraftBukkit start
|
|
+ ItemStack itemstack = new ItemStack(Items.ARROW);
|
|
+ if (this.fromPlayer == PickupStatus.ALLOWED && entityhuman.inventory.canHold(itemstack) > 0) {
|
|
+ EntityItem item = new EntityItem(this.world, this.locX, this.locY, this.locZ, itemstack);
|
|
+
|
|
+ PlayerPickupArrowEvent event = new PlayerPickupArrowEvent((org.bukkit.entity.Player) entityhuman.getBukkitEntity(), new org.bukkit.craftbukkit.entity.CraftItem(this.world.getServer(), this, item), (org.bukkit.entity.Arrow) this.getBukkitEntity());
|
|
+ // event.setCancelled(!entityhuman.canPickUpLoot); TODO
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ }
|
|
+ // CraftBukkit end
|
|
boolean flag = this.fromPlayer == EntityArrow.PickupStatus.ALLOWED || this.fromPlayer == EntityArrow.PickupStatus.CREATIVE_ONLY && entityhuman.abilities.canInstantlyBuild;
|
|
|
|
if (this.fromPlayer == EntityArrow.PickupStatus.ALLOWED && !entityhuman.inventory.pickup(this.j())) {
|
|
@@ -455,6 +482,12 @@
|
|
return (b0 & 1) != 0;
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ public boolean isInGround() {
|
|
+ return inGround;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
public static enum PickupStatus {
|
|
|
|
DISALLOWED, ALLOWED, CREATIVE_ONLY;
|