Paper/nms-patches/ItemFlintAndSteel.patch

16 lines
1002 B
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
2016-11-17 02:41:03 +01:00
@@ -16,6 +16,12 @@
2016-02-29 22:32:46 +01:00
return EnumInteractionResult.FAIL;
} else {
2016-02-29 22:32:46 +01:00
if (world.getType(blockposition).getMaterial() == Material.AIR) {
+ // CraftBukkit start - Store the clicked block
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockIgniteEvent(world, blockposition.getX(), blockposition.getY(), blockposition.getZ(), org.bukkit.event.block.BlockIgniteEvent.IgniteCause.FLINT_AND_STEEL, entityhuman).isCancelled()) {
+ itemstack.damage(1, entityhuman);
2016-02-29 22:32:46 +01:00
+ return EnumInteractionResult.PASS;
+ }
+ // CraftBukkit end
2016-11-17 02:41:03 +01:00
world.a(entityhuman, blockposition, SoundEffects.bI, SoundCategory.BLOCKS, 1.0F, ItemFlintAndSteel.j.nextFloat() * 0.4F + 0.8F);
2016-02-29 22:32:46 +01:00
world.setTypeAndData(blockposition, Blocks.FIRE.getBlockData(), 11);
}