--- a/net/minecraft/server/EntityPig.java +++ b/net/minecraft/server/EntityPig.java @@ -3,6 +3,10 @@ import com.google.common.collect.UnmodifiableIterator; import javax.annotation.Nullable; +// CraftBukkit start +import org.bukkit.craftbukkit.event.CraftEventFactory; +// CraftBukkit end + public class EntityPig extends EntityAnimal implements ISteerable, ISaddleable { private static final DataWatcherObject bv = DataWatcher.a(EntityPig.class, DataWatcherRegistry.i); @@ -204,7 +208,13 @@ } entitypigzombie.setPersistent(); - this.world.addEntity(entitypigzombie); + // CraftBukkit start + if (CraftEventFactory.callPigZapEvent(this, entitylightning, entitypigzombie).isCancelled()) { + return; + } + // CraftBukkit - added a reason for spawning this creature + this.world.addEntity(entitypigzombie, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.LIGHTNING); + // CraftBukkit end this.die(); } else { super.onLightningStrike(entitylightning);