3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 12:30:06 +01:00
Paper/nms-patches/EntityHorseChestedAbstract.patch
2018-07-15 10:00:00 +10:00

24 Zeilen
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
}