2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityAgeable.java
|
|
|
|
+++ b/net/minecraft/server/EntityAgeable.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -10,6 +10,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
protected int c;
|
2016-11-17 02:41:03 +01:00
|
|
|
private float bx = -1.0F;
|
|
|
|
private float by;
|
2016-02-29 22:32:46 +01:00
|
|
|
+ public boolean ageLocked; // CraftBukkit
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
public EntityAgeable(World world) {
|
|
|
|
super(world);
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -31,7 +32,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
if (entityageable != null) {
|
|
|
|
entityageable.setAgeRaw(-24000);
|
|
|
|
entityageable.setPositionRotation(this.locX, this.locY, this.locZ, 0.0F, 0.0F);
|
|
|
|
- this.world.addEntity(entityageable);
|
|
|
|
+ this.world.addEntity(entityageable, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.SPAWNER_EGG); // CraftBukkit
|
|
|
|
if (itemstack.hasName()) {
|
|
|
|
entityageable.setCustomName(itemstack.getName());
|
|
|
|
}
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -110,12 +111,14 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
super.b(nbttagcompound);
|
|
|
|
nbttagcompound.setInt("Age", this.getAge());
|
|
|
|
nbttagcompound.setInt("ForcedAge", this.b);
|
|
|
|
+ nbttagcompound.setBoolean("AgeLocked", this.ageLocked); // CraftBukkit
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
|
|
|
this.setAgeRaw(nbttagcompound.getInt("Age"));
|
|
|
|
this.b = nbttagcompound.getInt("ForcedAge");
|
|
|
|
+ this.ageLocked = nbttagcompound.getBoolean("AgeLocked"); // CraftBukkit
|
|
|
|
}
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
public void a(DataWatcherObject<?> datawatcherobject) {
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -128,7 +131,7 @@
|
2016-02-29 22:32:46 +01:00
|
|
|
|
|
|
|
public void n() {
|
|
|
|
super.n();
|
2015-02-26 23:41:06 +01:00
|
|
|
- if (this.world.isClientSide) {
|
|
|
|
+ if (this.world.isClientSide || ageLocked) { // CraftBukkit
|
2014-11-25 22:32:16 +01:00
|
|
|
if (this.c > 0) {
|
|
|
|
if (this.c % 4 == 0) {
|
|
|
|
this.world.addParticle(EnumParticle.VILLAGER_HAPPY, this.locX + (double) (this.random.nextFloat() * this.width * 2.0F) - (double) this.width, this.locY + 0.5D + (double) (this.random.nextFloat() * this.length), this.locZ + (double) (this.random.nextFloat() * this.width * 2.0F) - (double) this.width, 0.0D, 0.0D, 0.0D, new int[0]);
|