Implemented LivingEntity.getEyeLocation()

This commit is contained in:
Andrew Ardill 2011-03-10 05:37:12 +11:00 committed by Dinnerbone
parent 454da93a00
commit b819ffe8a4

View File

@ -6,6 +6,8 @@ import net.minecraft.server.EntityArrow;
import net.minecraft.server.EntityEgg;
import net.minecraft.server.EntityLiving;
import net.minecraft.server.EntitySnowball;
import org.bukkit.Location;
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.craftbukkit.CraftWorld;
@ -171,4 +173,10 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
public void damage(int amount, org.bukkit.entity.Entity source) {
entity.a(((CraftEntity)source).getHandle(), amount);
}
public Location getEyeLocation() {
Location loc = getLocation();
loc.setY(loc.getY() + getEyeHeight());
return loc;
}
}