2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityEnderCrystal.java
|
|
|
|
+++ b/net/minecraft/server/EntityEnderCrystal.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -3,6 +3,11 @@
|
2018-07-15 02:00:00 +02:00
|
|
|
import java.util.Optional;
|
2016-05-10 13:47:39 +02:00
|
|
|
import javax.annotation.Nullable;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
+import org.bukkit.event.entity.ExplosionPrimeEvent;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public class EntityEnderCrystal extends Entity {
|
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
private static final DataWatcherObject<Optional<BlockPosition>> b = DataWatcher.a(EntityEnderCrystal.class, DataWatcherRegistry.m);
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -39,7 +44,11 @@
|
2016-02-29 22:32:46 +01:00
|
|
|
BlockPosition blockposition = new BlockPosition(this);
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
if (this.world.worldProvider instanceof WorldProviderTheEnd && this.world.getType(blockposition).isAir()) {
|
2016-02-29 22:32:46 +01:00
|
|
|
- this.world.setTypeUpdate(blockposition, Blocks.FIRE.getBlockData());
|
|
|
|
+ // CraftBukkit start
|
2018-07-15 02:00:00 +02:00
|
|
|
+ if (!CraftEventFactory.callBlockIgniteEvent(this.world, blockposition, this).isCancelled()) {
|
2016-02-29 22:32:46 +01:00
|
|
|
+ this.world.setTypeUpdate(blockposition, Blocks.FIRE.getBlockData());
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2017-05-30 13:25:59 +02:00
|
|
|
@@ -75,10 +84,23 @@
|
2014-12-06 00:42:08 +01:00
|
|
|
return false;
|
|
|
|
} else {
|
2015-02-26 23:41:06 +01:00
|
|
|
if (!this.dead && !this.world.isClientSide) {
|
2014-12-06 00:42:08 +01:00
|
|
|
+ // CraftBukkit start - All non-living entities need this
|
|
|
|
+ if (CraftEventFactory.handleNonLivingEntityDamageEvent(this, damagesource, f)) {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2016-02-29 22:32:46 +01:00
|
|
|
this.die();
|
|
|
|
if (!this.world.isClientSide) {
|
2017-05-30 13:25:59 +02:00
|
|
|
if (!damagesource.isExplosion()) {
|
|
|
|
- this.world.explode((Entity) null, this.locX, this.locY, this.locZ, 6.0F, true);
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ ExplosionPrimeEvent event = new ExplosionPrimeEvent(this.getBukkitEntity(), 6.0F, true);
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
+ if (event.isCancelled()) {
|
|
|
|
+ this.dead = false;
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ this.world.explode(this, this.locX, this.locY, this.locZ, event.getRadius(), event.getFire());
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
this.a(damagesource);
|