1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-28 22:55:09 +02:00

Return inGround when checking Arrow's OnGround state. Fixes BUKKIT-4439

This commit is contained in:
EvilSeph 2013-07-10 20:25:34 -04:00
parent a31158bd0b
commit 67f15266da
2 changed files with 9 additions and 0 deletions
src/main/java
net/minecraft/server
org/bukkit/craftbukkit/entity

View file

@ -444,4 +444,10 @@ public class EntityArrow extends Entity implements IProjectile {
return (b0 & 1) != 0;
}
// CraftBukkit start
public boolean isInGround() {
return inGround;
}
// CraftBukkit end
}

View file

@ -184,6 +184,9 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
}
public boolean isOnGround() {
if (entity instanceof EntityArrow) {
return ((EntityArrow) entity).isInGround();
}
return entity.onGround;
}