mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 15:49:00 +01:00
Fix recursion in EntityFox (#2418)
I changed a method call without looking at the implications. super.processDeath would re-invoke the unmapped method, whereas super.d would call the super method.
This commit is contained in:
parent
e6c3d60574
commit
02105ddde6
1 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ index 627925e3ba..e516db2701 100644
|
|||
}
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/EntityFox.java b/src/main/java/net/minecraft/server/EntityFox.java
|
||||
index 85231309fd..97059b8239 100644
|
||||
index 85231309fd..1da2f013fc 100644
|
||||
--- a/src/main/java/net/minecraft/server/EntityFox.java
|
||||
+++ b/src/main/java/net/minecraft/server/EntityFox.java
|
||||
@@ -0,0 +0,0 @@ public class EntityFox extends EntityAnimal {
|
||||
|
@ -74,7 +74,7 @@ index 85231309fd..97059b8239 100644
|
|||
+ ItemStack itemstack = this.getEquipment(EnumItemSlot.MAINHAND).cloneItemStack(); // Paper
|
||||
+
|
||||
+ // Paper start - Cancellable death event
|
||||
+ org.bukkit.event.entity.EntityDeathEvent deathEvent = super.processDeath(damagesource);
|
||||
+ org.bukkit.event.entity.EntityDeathEvent deathEvent = super.d(damagesource);
|
||||
+
|
||||
+ // Below is code to drop
|
||||
+
|
||||
|
|
Loading…
Reference in a new issue