Persist locking of an animal's age to disk

Dieser Commit ist enthalten in:
Erik Broes 2012-01-24 22:06:37 +01:00
Ursprung 94231f1ecf
Commit 3b46222c54

Datei anzeigen

@ -149,12 +149,14 @@ public abstract class EntityAnimal extends EntityCreature implements IAnimal {
super.b(nbttagcompound);
nbttagcompound.setInt("Age", this.getAge());
nbttagcompound.setInt("InLove", this.love);
nbttagcompound.setBoolean("AgeLocked", this.ageLocked); // CraftBukkit
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
this.setAge(nbttagcompound.getInt("Age"));
this.love = nbttagcompound.getInt("InLove");
this.ageLocked = nbttagcompound.getBoolean("AgeLocked"); // CraftBukkit
}
protected Entity findTarget() {