Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
36 Zeilen
1.3 KiB
Diff
36 Zeilen
1.3 KiB
Diff
--- a/net/minecraft/server/EntityAgeable.java
|
|
+++ b/net/minecraft/server/EntityAgeable.java
|
|
@@ -8,6 +8,7 @@
|
|
protected int b;
|
|
protected int c;
|
|
protected int d;
|
|
+ public boolean ageLocked; // CraftBukkit
|
|
|
|
protected EntityAgeable(EntityTypes<? extends EntityAgeable> entitytypes, World world) {
|
|
super(entitytypes, world);
|
|
@@ -91,6 +92,7 @@
|
|
super.saveData(nbttagcompound);
|
|
nbttagcompound.setInt("Age", this.getAge());
|
|
nbttagcompound.setInt("ForcedAge", this.c);
|
|
+ nbttagcompound.setBoolean("AgeLocked", this.ageLocked); // CraftBukkit
|
|
}
|
|
|
|
@Override
|
|
@@ -98,6 +100,7 @@
|
|
super.loadData(nbttagcompound);
|
|
this.setAgeRaw(nbttagcompound.getInt("Age"));
|
|
this.c = nbttagcompound.getInt("ForcedAge");
|
|
+ this.ageLocked = nbttagcompound.getBoolean("AgeLocked"); // CraftBukkit
|
|
}
|
|
|
|
@Override
|
|
@@ -112,7 +115,7 @@
|
|
@Override
|
|
public void movementTick() {
|
|
super.movementTick();
|
|
- if (this.world.isClientSide) {
|
|
+ if (this.world.isClientSide || ageLocked) { // CraftBukkit
|
|
if (this.d > 0) {
|
|
if (this.d % 4 == 0) {
|
|
this.world.addParticle(Particles.HAPPY_VILLAGER, this.d(1.0D), this.cE() + 0.5D, this.g(1.0D), 0.0D, 0.0D, 0.0D);
|