craftbukkit/nms-patches/net/minecraft/world/entity/EntityAgeable.patch

36 lines
1.4 KiB
Diff
Raw Normal View History

2021-03-16 09:00:00 +11:00
--- a/net/minecraft/world/entity/EntityAgeable.java
+++ b/net/minecraft/world/entity/EntityAgeable.java
2023-03-15 03:30:00 +11:00
@@ -20,6 +20,7 @@
2021-06-11 15:00:00 +10:00
protected int age;
protected int forcedAge;
protected int forcedAgeTimer;
2016-03-01 08:32:46 +11:00
+ public boolean ageLocked; // CraftBukkit
2019-04-23 12:00:00 +10:00
protected EntityAgeable(EntityTypes<? extends EntityAgeable> entitytypes, World world) {
2018-07-15 10:00:00 +10:00
super(entitytypes, world);
2023-03-15 03:30:00 +11:00
@@ -103,6 +104,7 @@
2021-11-22 09:00:00 +11:00
super.addAdditionalSaveData(nbttagcompound);
nbttagcompound.putInt("Age", this.getAge());
nbttagcompound.putInt("ForcedAge", this.forcedAge);
+ nbttagcompound.putBoolean("AgeLocked", this.ageLocked); // CraftBukkit
}
2019-04-23 12:00:00 +10:00
@Override
2023-03-15 03:30:00 +11:00
@@ -110,6 +112,7 @@
2021-11-22 09:00:00 +11:00
super.readAdditionalSaveData(nbttagcompound);
this.setAge(nbttagcompound.getInt("Age"));
2021-06-11 15:00:00 +10:00
this.forcedAge = nbttagcompound.getInt("ForcedAge");
+ this.ageLocked = nbttagcompound.getBoolean("AgeLocked"); // CraftBukkit
}
2019-04-23 12:00:00 +10:00
@Override
2023-03-15 03:30:00 +11:00
@@ -124,7 +127,7 @@
2019-04-23 12:00:00 +10:00
@Override
2021-11-22 09:00:00 +11:00
public void aiStep() {
super.aiStep();
2023-06-08 01:30:00 +10:00
- if (this.level().isClientSide) {
+ if (this.level().isClientSide || ageLocked) { // CraftBukkit
2021-06-11 15:00:00 +10:00
if (this.forcedAgeTimer > 0) {
if (this.forcedAgeTimer % 4 == 0) {
2023-06-08 01:30:00 +10:00
this.level().addParticle(Particles.HAPPY_VILLAGER, this.getRandomX(1.0D), this.getRandomY() + 0.5D, this.getRandomZ(1.0D), 0.0D, 0.0D, 0.0D);