mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
SPIGOT-3487: Llama doesn't drop chest
This commit is contained in:
parent
86aa17fae1
commit
2cfb85dae2
19
nms-patches/EntityHorseChestedAbstract.patch
Normal file
19
nms-patches/EntityHorseChestedAbstract.patch
Normal file
@ -0,0 +1,19 @@
|
||||
--- a/net/minecraft/server/EntityHorseChestedAbstract.java
|
||||
+++ b/net/minecraft/server/EntityHorseChestedAbstract.java
|
||||
@@ -43,7 +43,7 @@
|
||||
}
|
||||
|
||||
public void die(DamageSource damagesource) {
|
||||
- super.die(damagesource);
|
||||
+ // super.die(damagesource); // CraftBukkit - moved down
|
||||
if (this.isCarryingChest()) {
|
||||
if (!this.world.isClientSide) {
|
||||
this.a(Item.getItemOf(Blocks.CHEST), 1);
|
||||
@@ -51,6 +51,7 @@
|
||||
|
||||
this.setCarryingChest(false);
|
||||
}
|
||||
+ super.die(damagesource); // CraftBukkit
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user