Skip to content

Commit 8e4021a

Browse files
committed
add dropped local var after decompilation in AgeableMob#ageUp
Known vineflower problem, see: Vineflower/vineflower#452 for more infos
1 parent c6e7ebc commit 8e4021a

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

paper-server/patches/sources/net/minecraft/server/network/ServerGamePacketListenerImpl.java.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@
274274
}
275275

276276
rootVehicle.move(MoverType.PLAYER, new Vec3(d3, d4, d5));
277-
+ double verticalDelta = d4; // Paper - Decompile fix, was named d11 previously, is now gone in the source
277+
+ double verticalDelta = d4; // Paper - Decompile fix: lvt reassignment lost
278278
d3 = d - rootVehicle.getX();
279279
d4 = d1 - rootVehicle.getY();
280280
if (d4 > -0.5 || d4 < 0.5) {
@@ -851,7 +851,7 @@
851851
+ return; // ... thanks Mojang for letting move calls teleport across dimensions.
852852
+ }
853853
+ // Paper end - prevent position desync
854-
+ double verticalDelta = d4; // Paper - Decompile fix, was named d11 previously, is now gone in the source
854+
+ double verticalDelta = d4; // Paper - Decompile fix: lvt reassignment lost
855855
d3 = d - this.player.getX();
856856
d4 = d1 - this.player.getY();
857857
if (d4 > -0.5 || d4 < 0.5) {

paper-server/patches/sources/net/minecraft/world/entity/AgeableMob.java.patch

+10-1
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,23 @@
88

99
protected AgeableMob(EntityType<? extends AgeableMob> entityType, Level level) {
1010
super(entityType, level);
11-
@@ -68,6 +_,7 @@
11+
@@ -68,13 +_,15 @@
1212
}
1313

1414
public void ageUp(int amount, boolean forced) {
1515
+ if (this.ageLocked) return; // Paper - Honor ageLock
1616
int age = this.getAge();
17+
+ int previousAge = age; // Paper - Decompile fix: lvt reassignment lost
1718
age += amount * 20;
1819
if (age > 0) {
20+
age = 0;
21+
}
22+
23+
- int i1 = age - age;
24+
+ int i1 = age - previousAge; // Paper - Decompile fix
25+
this.setAge(age);
26+
if (forced) {
27+
this.forcedAge += i1;
1928
@@ -106,6 +_,7 @@
2029
super.addAdditionalSaveData(compound);
2130
compound.putInt("Age", this.getAge());

0 commit comments

Comments
 (0)