geforkt von Mirrors/Paper
Return inGround when checking Arrow's OnGround state. Fixes BUKKIT-4439
Dieser Commit ist enthalten in:
Ursprung
a31158bd0b
Commit
67f15266da
@ -444,4 +444,10 @@ public class EntityArrow extends Entity implements IProjectile {
|
||||
|
||||
return (b0 & 1) != 0;
|
||||
}
|
||||
|
||||
// CraftBukkit start
|
||||
public boolean isInGround() {
|
||||
return inGround;
|
||||
}
|
||||
// CraftBukkit end
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren