mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-12 03:57:03 +00:00
Add the ability to set and get age in ageable watcher by number
This commit is contained in:
parent
95262097ca
commit
3e8532e6ff
1 changed files with 9 additions and 0 deletions
|
@ -8,6 +8,10 @@ public class AgeableWatcher extends LivingWatcher {
|
|||
super(disguise);
|
||||
}
|
||||
|
||||
public int getAge() {
|
||||
return (Integer) getValue(12, 0);
|
||||
}
|
||||
|
||||
public boolean isAdult() {
|
||||
return !isBaby();
|
||||
}
|
||||
|
@ -20,6 +24,11 @@ public class AgeableWatcher extends LivingWatcher {
|
|||
setBaby(!isAdult);
|
||||
}
|
||||
|
||||
public void setAge(int newAge) {
|
||||
setValue(12, newAge);
|
||||
sendData(12);
|
||||
}
|
||||
|
||||
public void setBaby(boolean isBaby) {
|
||||
setValue(12, isBaby ? -24000 : 0);
|
||||
sendData(12);
|
||||
|
|
Loading…
Reference in a new issue