2016-07-08 03:20:15 +02:00
|
|
|
--- a/net/minecraft/server/BlockTNT.java
|
|
|
|
+++ b/net/minecraft/server/BlockTNT.java
|
2018-08-26 04:00:00 +02:00
|
|
|
@@ -90,6 +90,11 @@
|
|
|
|
Entity entity1 = entityarrow.getShooter();
|
2016-07-08 03:20:15 +02:00
|
|
|
|
|
|
|
if (entityarrow.isBurning()) {
|
|
|
|
+ // CraftBukkit start
|
2018-07-15 02:00:00 +02:00
|
|
|
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(entityarrow, blockposition, Blocks.AIR.getBlockData()).isCancelled()) {
|
2016-07-08 03:20:15 +02:00
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2018-08-26 04:00:00 +02:00
|
|
|
this.a(world, blockposition, entity1 instanceof EntityLiving ? (EntityLiving) entity1 : null);
|
2016-07-08 03:20:15 +02:00
|
|
|
world.setAir(blockposition);
|
|
|
|
}
|