13
0
geforkt von Mirrors/Paper

Implement Entity.isOnGround(). Adds BUKKIT-3787

Dieser Commit ist enthalten in:
Chad Waters 2013-03-17 11:51:11 -04:00 committet von Travis Watkins
Ursprung 5df704bf5a
Commit 93fd33e218

Datei anzeigen

@ -182,6 +182,10 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
entity.velocityChanged = true;
}
public boolean isOnGround() {
return entity.onGround;
}
public World getWorld() {
return ((WorldServer) entity.world).getWorld();
}