2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityCreeper.java
|
|
|
|
+++ b/net/minecraft/server/EntityCreeper.java
|
2019-04-23 04:00:00 +02:00
|
|
|
@@ -2,6 +2,10 @@
|
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
import java.util.Collection;
|
|
|
|
import java.util.Iterator;
|
2014-11-25 22:32:16 +01:00
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
+import org.bukkit.event.entity.ExplosionPrimeEvent;
|
|
|
|
+// CraftBukkit end
|
2016-05-10 13:47:39 +02:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
public class EntityCreeper extends EntityMonster {
|
|
|
|
|
2019-04-23 04:00:00 +02:00
|
|
|
@@ -165,9 +169,19 @@
|
|
|
|
@Override
|
2014-11-25 22:32:16 +01:00
|
|
|
public void onLightningStrike(EntityLightning entitylightning) {
|
|
|
|
super.onLightningStrike(entitylightning);
|
2019-04-23 04:00:00 +02:00
|
|
|
- this.datawatcher.set(EntityCreeper.POWERED, true);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (CraftEventFactory.callCreeperPowerEvent(this, entitylightning, org.bukkit.event.entity.CreeperPowerEvent.PowerCause.LIGHTNING).isCancelled()) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ this.setPowered(true);
|
|
|
|
}
|
|
|
|
|
2016-05-31 12:53:37 +02:00
|
|
|
+ public void setPowered(boolean powered) {
|
2019-04-23 04:00:00 +02:00
|
|
|
+ this.datawatcher.set(EntityCreeper.POWERED, powered);
|
2016-05-31 12:53:37 +02:00
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
+
|
2019-04-23 04:00:00 +02:00
|
|
|
@Override
|
2016-11-17 02:41:03 +01:00
|
|
|
protected boolean a(EntityHuman entityhuman, EnumHand enumhand) {
|
|
|
|
ItemStack itemstack = entityhuman.b(enumhand);
|
2019-06-15 00:21:29 +02:00
|
|
|
@@ -187,15 +201,23 @@
|
|
|
|
return super.a(entityhuman, enumhand);
|
|
|
|
}
|
|
|
|
|
|
|
|
- private void eb() {
|
|
|
|
+ public void eb() { // PAIL rename explode, private -> public
|
|
|
|
if (!this.world.isClientSide) {
|
2019-04-23 04:00:00 +02:00
|
|
|
Explosion.Effect explosion_effect = this.world.getGameRules().getBoolean("mobGriefing") ? Explosion.Effect.DESTROY : Explosion.Effect.NONE;
|
2014-11-25 22:32:16 +01:00
|
|
|
float f = this.isPowered() ? 2.0F : 1.0F;
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2018-12-13 01:00:00 +01:00
|
|
|
- this.killed = true;
|
2019-04-23 04:00:00 +02:00
|
|
|
- this.world.explode(this, this.locX, this.locY, this.locZ, (float) this.explosionRadius * f, explosion_effect);
|
2014-11-25 22:32:16 +01:00
|
|
|
- this.die();
|
2018-12-13 01:00:00 +01:00
|
|
|
- this.createEffectCloud();
|
2016-02-29 22:32:46 +01:00
|
|
|
+ // CraftBukkit start
|
2014-11-25 22:32:16 +01:00
|
|
|
+ ExplosionPrimeEvent event = new ExplosionPrimeEvent(this.getBukkitEntity(), this.explosionRadius * f, false);
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
+ if (!event.isCancelled()) {
|
2018-12-13 01:00:00 +01:00
|
|
|
+ this.killed = true;
|
2019-04-23 04:00:00 +02:00
|
|
|
+ this.world.createExplosion(this, this.locX, this.locY, this.locZ, event.getRadius(), event.getFire(), explosion_effect);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ this.die();
|
2018-12-13 01:00:00 +01:00
|
|
|
+ this.createEffectCloud();
|
2014-11-25 22:32:16 +01:00
|
|
|
+ } else {
|
|
|
|
+ fuseTicks = 0;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2019-04-23 04:00:00 +02:00
|
|
|
@@ -206,6 +228,7 @@
|
2017-07-22 01:51:22 +02:00
|
|
|
if (!collection.isEmpty()) {
|
|
|
|
EntityAreaEffectCloud entityareaeffectcloud = new EntityAreaEffectCloud(this.world, this.locX, this.locY, this.locZ);
|
|
|
|
|
|
|
|
+ entityareaeffectcloud.setSource(this); // CraftBukkit
|
|
|
|
entityareaeffectcloud.setRadius(2.5F);
|
|
|
|
entityareaeffectcloud.setRadiusOnUse(-0.5F);
|
|
|
|
entityareaeffectcloud.setWaitTime(10);
|