Paper/nms-patches/EntityAgeable.patch

36 lines
1.3 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/EntityAgeable.java
+++ b/net/minecraft/server/EntityAgeable.java
2019-04-23 04:00:00 +02:00
@@ -8,6 +8,7 @@
protected int b;
protected int c;
2019-04-23 04:00:00 +02:00
protected int d;
2016-02-29 22:32:46 +01:00
+ public boolean ageLocked; // CraftBukkit
2019-04-23 04:00:00 +02:00
protected EntityAgeable(EntityTypes<? extends EntityAgeable> entitytypes, World world) {
2018-07-15 02:00:00 +02:00
super(entitytypes, world);
2020-06-25 02:00:00 +02:00
@@ -91,6 +92,7 @@
super.saveData(nbttagcompound);
nbttagcompound.setInt("Age", this.getAge());
2019-04-23 04:00:00 +02:00
nbttagcompound.setInt("ForcedAge", this.c);
+ nbttagcompound.setBoolean("AgeLocked", this.ageLocked); // CraftBukkit
}
2019-04-23 04:00:00 +02:00
@Override
2020-06-25 02:00:00 +02:00
@@ -98,6 +100,7 @@
super.loadData(nbttagcompound);
this.setAgeRaw(nbttagcompound.getInt("Age"));
2019-04-23 04:00:00 +02:00
this.c = nbttagcompound.getInt("ForcedAge");
+ this.ageLocked = nbttagcompound.getBoolean("AgeLocked"); // CraftBukkit
}
2019-04-23 04:00:00 +02:00
@Override
2020-06-25 02:00:00 +02:00
@@ -112,7 +115,7 @@
2019-04-23 04:00:00 +02:00
@Override
2018-12-13 01:00:00 +01:00
public void movementTick() {
super.movementTick();
2015-02-26 23:41:06 +01:00
- if (this.world.isClientSide) {
+ if (this.world.isClientSide || ageLocked) { // CraftBukkit
2019-04-23 04:00:00 +02:00
if (this.d > 0) {
if (this.d % 4 == 0) {
2020-06-25 02:00:00 +02:00
this.world.addParticle(Particles.HAPPY_VILLAGER, this.d(1.0D), this.cE() + 0.5D, this.g(1.0D), 0.0D, 0.0D, 0.0D);