2015-05-25 20:37:24 +10:00
|
|
|
--- a/net/minecraft/server/EntityPig.java
|
|
|
|
+++ b/net/minecraft/server/EntityPig.java
|
2019-07-26 09:58:18 +10:00
|
|
|
@@ -2,6 +2,10 @@
|
2018-07-15 10:00:00 +10:00
|
|
|
|
2016-05-10 21:47:39 +10:00
|
|
|
import javax.annotation.Nullable;
|
2014-11-26 08:32:16 +11:00
|
|
|
|
2018-11-14 14:10:22 +11:00
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
+// CraftBukkit end
|
2014-11-26 08:32:16 +11:00
|
|
|
+
|
|
|
|
public class EntityPig extends EntityAnimal {
|
|
|
|
|
2019-12-11 09:00:00 +11:00
|
|
|
private static final DataWatcherObject<Boolean> bw = DataWatcher.a(EntityPig.class, DataWatcherRegistry.i);
|
|
|
|
@@ -160,7 +164,13 @@
|
2019-04-23 12:00:00 +10:00
|
|
|
entitypigzombie.setCustomNameVisible(this.getCustomNameVisible());
|
2017-01-24 13:39:22 +11:00
|
|
|
}
|
|
|
|
|
2019-04-23 12:00:00 +10:00
|
|
|
- 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();
|
2014-11-26 08:32:16 +11:00
|
|
|
}
|
2019-04-23 12:00:00 +10:00
|
|
|
|