mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 12:02:36 +01:00
536256d6ff
By: md_5 <git@md-5.net>
141 lines
7.9 KiB
Diff
141 lines
7.9 KiB
Diff
--- a/net/minecraft/world/level/block/BlockFire.java
|
|
+++ b/net/minecraft/world/level/block/BlockFire.java
|
|
@@ -28,6 +28,13 @@
|
|
import net.minecraft.world.phys.shapes.VoxelShapeCollision;
|
|
import net.minecraft.world.phys.shapes.VoxelShapes;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.craftbukkit.block.CraftBlockState;
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
+import org.bukkit.event.block.BlockBurnEvent;
|
|
+import org.bukkit.event.block.BlockFadeEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public class BlockFire extends BlockFireAbstract {
|
|
|
|
public static final int MAX_AGE = 15;
|
|
@@ -93,7 +100,24 @@
|
|
|
|
@Override
|
|
public IBlockData updateState(IBlockData iblockdata, EnumDirection enumdirection, IBlockData iblockdata1, GeneratorAccess generatoraccess, BlockPosition blockposition, BlockPosition blockposition1) {
|
|
- return this.canPlace(iblockdata, generatoraccess, blockposition) ? this.a(generatoraccess, blockposition, (Integer) iblockdata.get(BlockFire.AGE)) : Blocks.AIR.getBlockData();
|
|
+ // CraftBukkit start
|
|
+ if (!this.canPlace(iblockdata, generatoraccess, blockposition)) {
|
|
+ // Suppress during worldgen
|
|
+ if (!(generatoraccess instanceof World)) {
|
|
+ return Blocks.AIR.getBlockData();
|
|
+ }
|
|
+ CraftBlockState blockState = CraftBlockState.getBlockState(generatoraccess, blockposition);
|
|
+ blockState.setData(Blocks.AIR.getBlockData());
|
|
+
|
|
+ BlockFadeEvent event = new BlockFadeEvent(blockState.getBlock(), blockState);
|
|
+ ((World) generatoraccess).getCraftServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ if (!event.isCancelled()) {
|
|
+ return blockState.getHandle();
|
|
+ }
|
|
+ }
|
|
+ return this.a(generatoraccess, blockposition, (Integer) iblockdata.get(BlockFire.AGE));
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
@Override
|
|
@@ -142,7 +166,7 @@
|
|
worldserver.getBlockTickList().a(blockposition, this, a(worldserver.random));
|
|
if (worldserver.getGameRules().getBoolean(GameRules.RULE_DOFIRETICK)) {
|
|
if (!iblockdata.canPlace(worldserver, blockposition)) {
|
|
- worldserver.a(blockposition, false);
|
|
+ fireExtinguished(worldserver, blockposition); // CraftBukkit - invalid place location
|
|
}
|
|
|
|
IBlockData iblockdata1 = worldserver.getType(blockposition.down());
|
|
@@ -150,7 +174,7 @@
|
|
int i = (Integer) iblockdata.get(BlockFire.AGE);
|
|
|
|
if (!flag && worldserver.isRaining() && this.a((World) worldserver, blockposition) && random.nextFloat() < 0.2F + (float) i * 0.03F) {
|
|
- worldserver.a(blockposition, false);
|
|
+ fireExtinguished(worldserver, blockposition); // CraftBukkit - extinguished by rain
|
|
} else {
|
|
int j = Math.min(15, i + random.nextInt(3) / 2);
|
|
|
|
@@ -164,14 +188,14 @@
|
|
BlockPosition blockposition1 = blockposition.down();
|
|
|
|
if (!worldserver.getType(blockposition1).d(worldserver, blockposition1, EnumDirection.UP) || i > 3) {
|
|
- worldserver.a(blockposition, false);
|
|
+ fireExtinguished(worldserver, blockposition); // CraftBukkit
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if (i == 15 && random.nextInt(4) == 0 && !this.f(worldserver.getType(blockposition.down()))) {
|
|
- worldserver.a(blockposition, false);
|
|
+ fireExtinguished(worldserver, blockposition); // CraftBukkit
|
|
return;
|
|
}
|
|
}
|
|
@@ -179,12 +203,14 @@
|
|
boolean flag1 = worldserver.u(blockposition);
|
|
int k = flag1 ? -50 : 0;
|
|
|
|
- this.trySpread(worldserver, blockposition.east(), 300 + k, random, i);
|
|
- this.trySpread(worldserver, blockposition.west(), 300 + k, random, i);
|
|
- this.trySpread(worldserver, blockposition.down(), 250 + k, random, i);
|
|
- this.trySpread(worldserver, blockposition.up(), 250 + k, random, i);
|
|
- this.trySpread(worldserver, blockposition.north(), 300 + k, random, i);
|
|
- this.trySpread(worldserver, blockposition.south(), 300 + k, random, i);
|
|
+ // CraftBukkit start - add source blockposition to burn calls
|
|
+ this.trySpread(worldserver, blockposition.east(), 300 + k, random, i, blockposition);
|
|
+ this.trySpread(worldserver, blockposition.west(), 300 + k, random, i, blockposition);
|
|
+ this.trySpread(worldserver, blockposition.down(), 250 + k, random, i, blockposition);
|
|
+ this.trySpread(worldserver, blockposition.up(), 250 + k, random, i, blockposition);
|
|
+ this.trySpread(worldserver, blockposition.north(), 300 + k, random, i, blockposition);
|
|
+ this.trySpread(worldserver, blockposition.south(), 300 + k, random, i, blockposition);
|
|
+ // CraftBukkit end
|
|
BlockPosition.MutableBlockPosition blockposition_mutableblockposition = new BlockPosition.MutableBlockPosition();
|
|
|
|
for (int l = -1; l <= 1; ++l) {
|
|
@@ -210,7 +236,15 @@
|
|
if (i2 > 0 && random.nextInt(k1) <= i2 && (!worldserver.isRaining() || !this.a((World) worldserver, (BlockPosition) blockposition_mutableblockposition))) {
|
|
int j2 = Math.min(15, i + random.nextInt(5) / 4);
|
|
|
|
- worldserver.setTypeAndData(blockposition_mutableblockposition, this.a(worldserver, blockposition_mutableblockposition, j2), 3);
|
|
+ // CraftBukkit start - Call to stop spread of fire
|
|
+ if (worldserver.getType(blockposition_mutableblockposition).getBlock() != Blocks.FIRE) {
|
|
+ if (CraftEventFactory.callBlockIgniteEvent(worldserver, blockposition_mutableblockposition, blockposition).isCancelled()) {
|
|
+ continue;
|
|
+ }
|
|
+
|
|
+ CraftEventFactory.handleBlockSpreadEvent(worldserver, blockposition, blockposition_mutableblockposition, this.a(worldserver, blockposition_mutableblockposition, j2), 3); // CraftBukkit
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
}
|
|
}
|
|
@@ -234,12 +268,24 @@
|
|
return iblockdata.b(BlockProperties.WATERLOGGED) && (Boolean) iblockdata.get(BlockProperties.WATERLOGGED) ? 0 : this.flameOdds.getInt(iblockdata.getBlock());
|
|
}
|
|
|
|
- private void trySpread(World world, BlockPosition blockposition, int i, Random random, int j) {
|
|
+ private void trySpread(World world, BlockPosition blockposition, int i, Random random, int j, BlockPosition sourceposition) { // CraftBukkit add sourceposition
|
|
int k = this.getBurnChance(world.getType(blockposition));
|
|
|
|
if (random.nextInt(i) < k) {
|
|
IBlockData iblockdata = world.getType(blockposition);
|
|
|
|
+ // CraftBukkit start
|
|
+ org.bukkit.block.Block theBlock = world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
|
+ org.bukkit.block.Block sourceBlock = world.getWorld().getBlockAt(sourceposition.getX(), sourceposition.getY(), sourceposition.getZ());
|
|
+
|
|
+ BlockBurnEvent event = new BlockBurnEvent(theBlock, sourceBlock);
|
|
+ world.getCraftServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
if (random.nextInt(j + 10) < 5 && !world.isRainingAt(blockposition)) {
|
|
int l = Math.min(j + random.nextInt(5) / 4, 15);
|
|
|