Paper/nms-patches/EntityHorseChestedAbstract.patch
2018-07-15 10:00:00 +10:00

24 lines
718 B
Diff

--- a/net/minecraft/server/EntityHorseChestedAbstract.java
+++ b/net/minecraft/server/EntityHorseChestedAbstract.java
@@ -43,14 +43,18 @@
}
public void die(DamageSource damagesource) {
- super.die(damagesource);
+ // super.die(damagesource); // CraftBukkit - moved down
if (this.isCarryingChest()) {
if (!this.world.isClientSide) {
this.a((IMaterial) Blocks.CHEST);
}
- this.setCarryingChest(false);
+ // this.setCarryingChest(false); // CraftBukkit - moved down
}
+ // CraftBukkit start
+ super.die(damagesource);
+ this.setCarryingChest(false);
+ // CraftBukkit end
}