mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-02 06:57:30 +01:00
Added Creature.getTarget
This commit is contained in:
parent
e3011157b1
commit
7401ee54a3
1 changed files with 8 additions and 0 deletions
|
@ -24,6 +24,14 @@ public class CraftCreature extends CraftLivingEntity implements Creature{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public CraftLivingEntity getTarget() {
|
||||||
|
if (entity.d == null) {
|
||||||
|
return null;
|
||||||
|
} else {
|
||||||
|
return (CraftLivingEntity)entity.d.getBukkitEntity();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public EntityCreature getHandle() {
|
public EntityCreature getHandle() {
|
||||||
return entity;
|
return entity;
|
||||||
|
|
Loading…
Add table
Reference in a new issue