From 537840d1dfc7dbb5ca9401ee78d80881cda8e210 Mon Sep 17 00:00:00 2001 From: Nathan Adams Date: Tue, 11 Oct 2011 02:22:38 +0100 Subject: Added new entity.get/setTicksLived for identifying an entity's age --- src/main/java/org/bukkit/entity/Entity.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/main/java/org/bukkit/entity/Entity.java b/src/main/java/org/bukkit/entity/Entity.java index 5fa4ee10..9b0ab70f 100644 --- a/src/main/java/org/bukkit/entity/Entity.java +++ b/src/main/java/org/bukkit/entity/Entity.java @@ -173,4 +173,23 @@ public interface Entity { * @return unique id */ public UUID getUniqueId(); + + /** + * Gets the amount of ticks this entity has lived for. + *

+ * This is the equivalent to "age" in entities. + * + * @return Age of entity + */ + public int getTicksLived(); + + /** + * Sets the amount of ticks this entity has lived for. + *

+ * This is the equivalent to "age" in entities. May not be + * less than one tick. + * + * @param value Age of entity + */ + public void setTicksLived(int value); } -- cgit v1.2.3