Implemented entity age methods

By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
CraftBukkit/Spigot 2011-10-11 02:23:10 +01:00
parent 9ad2b97138
commit e2369da502

View file

@ -286,4 +286,15 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
return result;
}
public int getTicksLived() {
return getHandle().ticksLived;
}
public void setTicksLived(int value) {
if (value <= 0) {
throw new IllegalArgumentException("Age must be at least 1 tick");
}
getHandle().ticksLived = value;
}
}