mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 18:27:41 +01:00
8398e12b34
By: md_5 <git@md-5.net>
49 lines
2.0 KiB
Diff
49 lines
2.0 KiB
Diff
--- a/net/minecraft/world/level/block/BlockFireAbstract.java
|
|
+++ b/net/minecraft/world/level/block/BlockFireAbstract.java
|
|
@@ -127,7 +127,14 @@
|
|
if (!entity.fireImmune()) {
|
|
entity.setRemainingFireTicks(entity.getRemainingFireTicks() + 1);
|
|
if (entity.getRemainingFireTicks() == 0) {
|
|
- entity.setSecondsOnFire(8);
|
|
+ // CraftBukkit start
|
|
+ org.bukkit.event.entity.EntityCombustEvent event = new org.bukkit.event.entity.EntityCombustByBlockEvent(org.bukkit.craftbukkit.block.CraftBlock.at(world, blockposition), entity.getBukkitEntity(), 8);
|
|
+ world.getCraftServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ if (!event.isCancelled()) {
|
|
+ entity.setSecondsOnFire(event.getDuration(), false);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
}
|
|
|
|
@@ -148,14 +155,14 @@
|
|
}
|
|
|
|
if (!iblockdata.canSurvive(world, blockposition)) {
|
|
- world.removeBlock(blockposition, false);
|
|
+ fireExtinguished(world, blockposition); // CraftBukkit - fuel block broke
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
private static boolean inPortalDimension(World world) {
|
|
- return world.dimension() == World.OVERWORLD || world.dimension() == World.NETHER;
|
|
+ return world.getTypeKey() == net.minecraft.world.level.dimension.WorldDimension.OVERWORLD || world.getTypeKey() == net.minecraft.world.level.dimension.WorldDimension.NETHER; // CraftBukkit - getTypeKey()
|
|
}
|
|
|
|
@Override
|
|
@@ -203,4 +210,12 @@
|
|
}
|
|
}
|
|
}
|
|
+
|
|
+ // CraftBukkit start
|
|
+ protected void fireExtinguished(net.minecraft.world.level.GeneratorAccess world, BlockPosition position) {
|
|
+ if (!org.bukkit.craftbukkit.event.CraftEventFactory.callBlockFadeEvent(world, position, Blocks.AIR.defaultBlockState()).isCancelled()) {
|
|
+ world.removeBlock(position, false);
|
|
+ }
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|