mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Implemented LivingEntity.getEyeLocation()
By: Andrew Ardill <andrew.ardill@gmail.com>
This commit is contained in:
parent
9e55a258eb
commit
57d31f1940
1 changed files with 8 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue