2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Mark Vainomaa <mikroskeem@mikroskeem.eu>
Date: Mon, 16 Jul 2018 00:05:05 +0300
Subject: [PATCH] Add TNTPrimeEvent
diff --git a/src/main/java/net/minecraft/world/entity/boss/enderdragon/EnderDragon.java b/src/main/java/net/minecraft/world/entity/boss/enderdragon/EnderDragon.java
2023-12-05 23:12:48 +01:00
index d4832067f87491b8273b7957ce3eec1ad3ba9830..c00d4b8e39ef90bb06098bee290203502bd4225b 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/world/entity/boss/enderdragon/EnderDragon.java
+++ b/src/main/java/net/minecraft/world/entity/boss/enderdragon/EnderDragon.java
2023-09-22 00:01:00 +02:00
@@ -558,6 +558,11 @@ public class EnderDragon extends Mob implements Enemy {
2021-06-11 14:02:28 +02:00
});
2023-06-07 22:19:14 +02:00
craftBlock.getNMS().spawnAfterBreak((ServerLevel) this.level(), blockposition, ItemStack.EMPTY, false);
2021-06-11 14:02:28 +02:00
}
+ // Paper start - TNTPrimeEvent
2023-06-07 23:35:19 +02:00
+ org.bukkit.block.Block tntBlock = this.level().getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
2022-12-08 07:11:20 +01:00
+ if(!new com.destroystokyo.paper.event.block.TNTPrimeEvent(tntBlock, com.destroystokyo.paper.event.block.TNTPrimeEvent.PrimeReason.EXPLOSION, explosionSource.getIndirectSourceEntity().getBukkitEntity()).callEvent())
2021-06-11 14:02:28 +02:00
+ continue;
+ // Paper end
2023-10-27 01:34:58 +02:00
nmsBlock.wasExploded(this.level(), blockposition, this.explosionSource);
2021-06-11 14:02:28 +02:00
2023-06-07 22:19:14 +02:00
this.level().removeBlock(blockposition, false);
2021-06-11 14:02:28 +02:00
diff --git a/src/main/java/net/minecraft/world/level/block/FireBlock.java b/src/main/java/net/minecraft/world/level/block/FireBlock.java
2023-12-05 23:12:48 +01:00
index 016c8b7762c2b4eacb95a455940db4684b34e03c..80e90bae3c05bbaf978a66629d9c4132c22efd1a 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/world/level/block/FireBlock.java
+++ b/src/main/java/net/minecraft/world/level/block/FireBlock.java
2023-12-05 23:12:48 +01:00
@@ -302,12 +302,19 @@ public class FireBlock extends BaseFireBlock {
2021-06-11 14:02:28 +02:00
world.setBlock(blockposition, this.getStateWithAge(world, blockposition, l), 3);
} else {
- world.removeBlock(blockposition, false);
+ if(iblockdata.getBlock() != Blocks.TNT) world.removeBlock(blockposition, false); // Paper - TNTPrimeEvent - We might be cancelling it below, move the setAir down
}
Block block = iblockdata.getBlock();
2022-06-07 23:45:11 +02:00
if (block instanceof TntBlock) {
2021-06-11 14:02:28 +02:00
+ // Paper start - TNTPrimeEvent
2022-10-24 21:43:46 +02:00
+ org.bukkit.block.Block tntBlock = io.papermc.paper.util.MCUtil.toBukkitBlock(world, blockposition);
2021-06-13 01:45:00 +02:00
+ if (!new com.destroystokyo.paper.event.block.TNTPrimeEvent(tntBlock, com.destroystokyo.paper.event.block.TNTPrimeEvent.PrimeReason.FIRE, null).callEvent()) {
2021-06-11 14:02:28 +02:00
+ return;
+ }
2021-06-17 23:39:36 +02:00
+ world.removeBlock(blockposition, false);
2021-06-11 14:02:28 +02:00
+ // Paper end
TntBlock.explode(world, blockposition);
}
}
diff --git a/src/main/java/net/minecraft/world/level/block/TntBlock.java b/src/main/java/net/minecraft/world/level/block/TntBlock.java
2023-12-05 23:12:48 +01:00
index cc20c320cbb3420e5e302a94571bab374c8553c8..443a8a8e2f0791a1455193cb125e1560f5d1edab 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/world/level/block/TntBlock.java
+++ b/src/main/java/net/minecraft/world/level/block/TntBlock.java
2023-12-05 23:12:48 +01:00
@@ -49,6 +49,12 @@ public class TntBlock extends Block {
2021-06-11 14:02:28 +02:00
public void onPlace(BlockState state, Level world, BlockPos pos, BlockState oldState, boolean notify) {
if (!oldState.is(state.getBlock())) {
2023-05-12 13:10:08 +02:00
if (world.hasNeighborSignal(pos) && CraftEventFactory.callTNTPrimeEvent(world, pos, PrimeCause.REDSTONE, null, null)) { // CraftBukkit - TNTPrimeEvent
2021-06-11 14:02:28 +02:00
+ // Paper start - TNTPrimeEvent
2023-05-12 13:10:08 +02:00
+ org.bukkit.block.Block tntBlock = io.papermc.paper.util.MCUtil.toBukkitBlock(world, pos);
+ if (!new com.destroystokyo.paper.event.block.TNTPrimeEvent(tntBlock, com.destroystokyo.paper.event.block.TNTPrimeEvent.PrimeReason.REDSTONE, null).callEvent()) {
2021-06-11 14:02:28 +02:00
+ return;
2023-05-12 13:10:08 +02:00
+ }
2021-06-11 14:02:28 +02:00
+ // Paper end
2021-06-13 01:45:00 +02:00
TntBlock.explode(world, pos);
2021-06-11 14:02:28 +02:00
world.removeBlock(pos, false);
}
2023-12-05 23:12:48 +01:00
@@ -59,6 +65,12 @@ public class TntBlock extends Block {
2021-06-11 14:02:28 +02:00
@Override
2022-06-07 23:45:11 +02:00
public void neighborChanged(BlockState state, Level world, BlockPos pos, Block sourceBlock, BlockPos sourcePos, boolean notify) {
2023-05-12 13:10:08 +02:00
if (world.hasNeighborSignal(pos) && CraftEventFactory.callTNTPrimeEvent(world, pos, PrimeCause.REDSTONE, null, sourcePos)) { // CraftBukkit - TNTPrimeEvent
2021-06-11 14:02:28 +02:00
+ // Paper start - TNTPrimeEvent
2023-05-12 13:10:08 +02:00
+ org.bukkit.block.Block tntBlock = io.papermc.paper.util.MCUtil.toBukkitBlock(world, pos);
+ if (!new com.destroystokyo.paper.event.block.TNTPrimeEvent(tntBlock, com.destroystokyo.paper.event.block.TNTPrimeEvent.PrimeReason.REDSTONE, null).callEvent()) {
2021-06-11 14:02:28 +02:00
+ return;
2023-05-12 13:10:08 +02:00
+ }
2021-06-11 14:02:28 +02:00
+ // Paper end
2021-06-13 01:45:00 +02:00
TntBlock.explode(world, pos);
2021-06-11 14:02:28 +02:00
world.removeBlock(pos, false);
}
2023-12-05 23:12:48 +01:00
@@ -77,6 +89,13 @@ public class TntBlock extends Block {
2021-06-11 14:02:28 +02:00
@Override
public void wasExploded(Level world, BlockPos pos, Explosion explosion) {
if (!world.isClientSide) {
+ // Paper start - TNTPrimeEvent
2022-10-24 21:43:46 +02:00
+ org.bukkit.block.Block tntBlock = io.papermc.paper.util.MCUtil.toBukkitBlock(world, pos);
2021-06-11 14:02:28 +02:00
+ org.bukkit.entity.Entity source = explosion.source != null ? explosion.source.getBukkitEntity() : null;
2023-05-12 13:10:08 +02:00
+ if (!new com.destroystokyo.paper.event.block.TNTPrimeEvent(tntBlock, com.destroystokyo.paper.event.block.TNTPrimeEvent.PrimeReason.EXPLOSION, source).callEvent()) {
2021-06-11 14:02:28 +02:00
+ return;
2023-05-12 13:10:08 +02:00
+ }
2021-06-11 14:02:28 +02:00
+ // Paper end
2022-12-07 20:22:28 +01:00
PrimedTnt entitytntprimed = new PrimedTnt(world, (double) pos.getX() + 0.5D, (double) pos.getY(), (double) pos.getZ() + 0.5D, explosion.getIndirectSourceEntity());
2021-06-13 01:45:00 +02:00
int i = entitytntprimed.getFuse();
2021-06-11 14:02:28 +02:00
2023-12-05 23:12:48 +01:00
@@ -111,6 +130,12 @@ public class TntBlock extends Block {
2023-05-12 13:10:08 +02:00
return InteractionResult.CONSUME;
}
// CraftBukkit end
2021-06-11 14:02:28 +02:00
+ // Paper start - TNTPrimeEvent
2022-10-24 21:43:46 +02:00
+ org.bukkit.block.Block tntBlock = io.papermc.paper.util.MCUtil.toBukkitBlock(world, pos);
2023-05-12 13:10:08 +02:00
+ if (!new com.destroystokyo.paper.event.block.TNTPrimeEvent(tntBlock, com.destroystokyo.paper.event.block.TNTPrimeEvent.PrimeReason.ITEM, player.getBukkitEntity()).callEvent()) {
2021-06-11 14:02:28 +02:00
+ return InteractionResult.FAIL;
2023-05-12 13:10:08 +02:00
+ }
2021-06-11 14:02:28 +02:00
+ // Paper end
2021-11-23 16:04:41 +01:00
TntBlock.explode(world, pos, player);
2021-06-11 14:02:28 +02:00
world.setBlock(pos, Blocks.AIR.defaultBlockState(), 11);
2021-06-13 01:45:00 +02:00
Item item = itemstack.getItem();
2023-12-05 23:12:48 +01:00
@@ -142,6 +167,12 @@ public class TntBlock extends Block {
2021-06-13 01:45:00 +02:00
return;
2021-06-11 14:02:28 +02:00
}
// CraftBukkit end
+ // Paper start - TNTPrimeEvent
2022-10-24 21:43:46 +02:00
+ org.bukkit.block.Block tntBlock = io.papermc.paper.util.MCUtil.toBukkitBlock(world, blockposition);
2021-06-13 01:45:00 +02:00
+ if (!new com.destroystokyo.paper.event.block.TNTPrimeEvent(tntBlock, com.destroystokyo.paper.event.block.TNTPrimeEvent.PrimeReason.PROJECTILE, projectile.getBukkitEntity()).callEvent()) {
2021-06-11 14:02:28 +02:00
+ return;
+ }
+ // Paper end
2021-06-13 01:45:00 +02:00
TntBlock.explode(world, blockposition, entity instanceof LivingEntity ? (LivingEntity) entity : null);
2021-06-11 14:02:28 +02:00
world.removeBlock(blockposition, false);
}