mirror of
https://github.com/barkeser2002/CatServer.git
synced 2026-09-25 02:20:01 +03:00
20 lines
672 B
Diff
20 lines
672 B
Diff
--- ../src-base/minecraft/net/minecraft/entity/monster/EntityWitherSkeleton.java
|
|
+++ ../src-work/minecraft/net/minecraft/entity/monster/EntityWitherSkeleton.java
|
|
@@ -63,7 +63,7 @@
|
|
|
|
public void onDeath(DamageSource cause)
|
|
{
|
|
- super.onDeath(cause);
|
|
+ // super.onDeath(cause); // CraftBukkit - down
|
|
|
|
if (cause.getTrueSource() instanceof EntityCreeper)
|
|
{
|
|
@@ -75,6 +75,7 @@
|
|
this.entityDropItem(new ItemStack(Items.SKULL, 1, 1), 0.0F);
|
|
}
|
|
}
|
|
+ super.onDeath(cause); // CraftBukkit - moved from above
|
|
}
|
|
|
|
protected void setEquipmentBasedOnDifficulty(DifficultyInstance difficulty)
|