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;
|
2014-11-25 22:32:16 +01:00
|
|
|
} else {
|
2016-02-29 22:32:46 +01:00
|
|
|
if (world.getType(blockposition).getMaterial() == Material.AIR) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start - Store the clicked block
|
2016-04-04 09:18:01 +02:00
|
|
|
+ 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()) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ itemstack.damage(1, entityhuman);
|
2016-02-29 22:32:46 +01:00
|
|
|
+ return EnumInteractionResult.PASS;
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+ // 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);
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|