Paper/nms-patches/ItemFlintAndSteel.patch

18 lines
1.2 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/ItemFlintAndSteel.java
+++ b/net/minecraft/server/ItemFlintAndSteel.java
2020-06-25 02:00:00 +02:00
@@ -27,6 +27,14 @@
2019-12-10 23:00:00 +01:00
BlockPosition blockposition1 = blockposition.shift(itemactioncontext.getClickedFace());
2020-06-25 02:00:00 +02:00
if (BlockFireAbstract.a((GeneratorAccess) world, blockposition1)) {
2019-12-10 23:00:00 +01:00
+ // CraftBukkit start - Store the clicked block
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockIgniteEvent(world, blockposition1, org.bukkit.event.block.BlockIgniteEvent.IgniteCause.FLINT_AND_STEEL, entityhuman).isCancelled()) {
+ itemactioncontext.getItemStack().damage(1, entityhuman, (entityhuman1) -> {
2020-01-21 22:00:00 +01:00
+ entityhuman1.broadcastItemBreak(itemactioncontext.getHand());
2019-12-10 23:00:00 +01:00
+ });
+ return EnumInteractionResult.PASS;
+ }
+ // CraftBukkit end
2020-06-25 02:00:00 +02:00
world.playSound(entityhuman, blockposition1, SoundEffects.ITEM_FLINTANDSTEEL_USE, SoundCategory.BLOCKS, 1.0F, ItemFlintAndSteel.RANDOM.nextFloat() * 0.4F + 0.8F);
IBlockData iblockdata1 = BlockFireAbstract.a((IBlockAccess) world, blockposition1);
2018-07-15 02:00:00 +02:00