mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 04:09:54 +01:00
SPIGOT-4205: Cancelled damage should not anger pig zombie
This commit is contained in:
parent
a0c7bcf02a
commit
8e87d03145
20
nms-patches/EntityPigZombie.patch
Normal file
20
nms-patches/EntityPigZombie.patch
Normal file
@ -0,0 +1,20 @@
|
||||
--- 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
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user