3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-19 04:50:06 +01:00

Implemented entity age methods

Dieser Commit ist enthalten in:
Nathan Adams 2011-10-11 02:23:10 +01:00
Ursprung ac0641887b
Commit af1838305c

Datei anzeigen

@ -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;
}
}