mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
SPIGOT-3067: Wither skeleton heads not dropping
This commit is contained in:
parent
4c8d895513
commit
1a710213df
19
nms-patches/EntitySkeletonWither.patch
Normal file
19
nms-patches/EntitySkeletonWither.patch
Normal file
@ -0,0 +1,19 @@
|
||||
--- a/net/minecraft/server/EntitySkeletonWither.java
|
||||
+++ b/net/minecraft/server/EntitySkeletonWither.java
|
||||
@@ -36,7 +36,7 @@
|
||||
}
|
||||
|
||||
public void die(DamageSource damagesource) {
|
||||
- super.die(damagesource);
|
||||
+ // super.die(damagesource); // CraftBukkit
|
||||
if (damagesource.getEntity() instanceof EntityCreeper) {
|
||||
EntityCreeper entitycreeper = (EntityCreeper) damagesource.getEntity();
|
||||
|
||||
@@ -45,6 +45,7 @@
|
||||
this.a(new ItemStack(Items.SKULL, 1, 1), 0.0F);
|
||||
}
|
||||
}
|
||||
+ super.die(damagesource); // CraftBukkit - moved from above
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user