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:
Ursprung
ac0641887b
Commit
af1838305c
@ -286,4 +286,15 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
|||||||
|
|
||||||
return result;
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren