mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
21 lines
655 B
Diff
21 lines
655 B
Diff
|
--- a/net/minecraft/server/EntityPigZombie.java
|
||
|
+++ b/net/minecraft/server/EntityPigZombie.java
|
||
|
@@ -113,11 +113,15 @@
|
||
|
} else {
|
||
|
Entity entity = damagesource.getEntity();
|
||
|
|
||
|
- if (entity instanceof EntityHuman && !((EntityHuman) entity).u()) {
|
||
|
+ // CraftBukkit start
|
||
|
+ boolean result = super.damageEntity(damagesource, f);
|
||
|
+
|
||
|
+ if (result && entity instanceof EntityHuman && !((EntityHuman) entity).u()) {
|
||
|
this.a(entity);
|
||
|
}
|
||
|
|
||
|
- return super.damageEntity(damagesource, f);
|
||
|
+ return result;
|
||
|
+ // CraftBukkit end
|
||
|
}
|
||
|
}
|
||
|
|