@@ -1,6 +1,6 @@
|
||||
--- a/net/minecraft/world/entity/EntityAgeable.java
|
||||
+++ b/net/minecraft/world/entity/EntityAgeable.java
|
||||
@@ -19,6 +19,7 @@
|
||||
@@ -20,6 +20,7 @@
|
||||
protected int age;
|
||||
protected int forcedAge;
|
||||
protected int forcedAgeTimer;
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
protected EntityAgeable(EntityTypes<? extends EntityAgeable> entitytypes, World world) {
|
||||
super(entitytypes, world);
|
||||
@@ -102,6 +103,7 @@
|
||||
@@ -103,6 +104,7 @@
|
||||
super.addAdditionalSaveData(nbttagcompound);
|
||||
nbttagcompound.putInt("Age", this.getAge());
|
||||
nbttagcompound.putInt("ForcedAge", this.forcedAge);
|
||||
@@ -16,7 +16,7 @@
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -109,6 +111,7 @@
|
||||
@@ -110,6 +112,7 @@
|
||||
super.readAdditionalSaveData(nbttagcompound);
|
||||
this.setAge(nbttagcompound.getInt("Age"));
|
||||
this.forcedAge = nbttagcompound.getInt("ForcedAge");
|
||||
@@ -24,7 +24,7 @@
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -123,7 +126,7 @@
|
||||
@@ -124,7 +127,7 @@
|
||||
@Override
|
||||
public void aiStep() {
|
||||
super.aiStep();
|
||||
|
||||
Reference in New Issue
Block a user