mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
9d740b84b0
By: md_5 <git@md-5.net>
35 lines
1.4 KiB
Diff
35 lines
1.4 KiB
Diff
--- a/net/minecraft/world/entity/EntityAgeable.java
|
|
+++ b/net/minecraft/world/entity/EntityAgeable.java
|
|
@@ -20,6 +20,7 @@
|
|
protected int age;
|
|
protected int forcedAge;
|
|
protected int forcedAgeTimer;
|
|
+ public boolean ageLocked; // CraftBukkit
|
|
|
|
protected EntityAgeable(EntityTypes<? extends EntityAgeable> entitytypes, World world) {
|
|
super(entitytypes, world);
|
|
@@ -103,6 +104,7 @@
|
|
super.addAdditionalSaveData(nbttagcompound);
|
|
nbttagcompound.putInt("Age", this.getAge());
|
|
nbttagcompound.putInt("ForcedAge", this.forcedAge);
|
|
+ nbttagcompound.putBoolean("AgeLocked", this.ageLocked); // CraftBukkit
|
|
}
|
|
|
|
@Override
|
|
@@ -110,6 +112,7 @@
|
|
super.readAdditionalSaveData(nbttagcompound);
|
|
this.setAge(nbttagcompound.getInt("Age"));
|
|
this.forcedAge = nbttagcompound.getInt("ForcedAge");
|
|
+ this.ageLocked = nbttagcompound.getBoolean("AgeLocked"); // CraftBukkit
|
|
}
|
|
|
|
@Override
|
|
@@ -124,7 +127,7 @@
|
|
@Override
|
|
public void aiStep() {
|
|
super.aiStep();
|
|
- if (this.level().isClientSide) {
|
|
+ if (this.level().isClientSide || ageLocked) { // CraftBukkit
|
|
if (this.forcedAgeTimer > 0) {
|
|
if (this.forcedAgeTimer % 4 == 0) {
|
|
this.level().addParticle(Particles.HAPPY_VILLAGER, this.getRandomX(1.0D), this.getRandomY() + 0.5D, this.getRandomZ(1.0D), 0.0D, 0.0D, 0.0D);
|