2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/ItemFlintAndSteel.java
|
|
|
|
+++ b/net/minecraft/server/ItemFlintAndSteel.java
|
2014-11-25 22:32:16 +01:00
|
|
|
@@ -1,5 +1,10 @@
|
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.block.CraftBlockState;
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public class ItemFlintAndSteel extends Item {
|
|
|
|
|
|
|
|
public ItemFlintAndSteel() {
|
2015-02-26 23:41:06 +01:00
|
|
|
@@ -9,13 +14,31 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
public EnumInteractionResult a(ItemStack itemstack, EntityHuman entityhuman, World world, BlockPosition blockposition, EnumHand enumhand, EnumDirection enumdirection, float f, float f1, float f2) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ BlockPosition clicked = blockposition; // CraftBukkit
|
|
|
|
blockposition = blockposition.shift(enumdirection);
|
|
|
|
if (!entityhuman.a(blockposition, enumdirection, itemstack)) {
|
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
|
|
|
|
+ if (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;
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ CraftBlockState blockState = CraftBlockState.getBlockState(world, blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
|
|
|
+ // CraftBukkit end
|
2016-03-30 21:50:59 +02:00
|
|
|
world.a(entityhuman, blockposition, SoundEffects.bx, 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
|
|
|
+
|
|
|
|
+ // CraftBukkit start
|
2016-03-01 22:37:08 +01:00
|
|
|
+ org.bukkit.event.block.BlockPlaceEvent placeEvent = CraftEventFactory.callBlockPlaceEvent(world, entityhuman, enumhand, blockState, clicked.getX(), clicked.getY(), clicked.getZ());
|
2014-11-25 22:32:16 +01:00
|
|
|
+
|
|
|
|
+ if (placeEvent.isCancelled() || !placeEvent.canBuild()) {
|
|
|
|
+ placeEvent.getBlockPlaced().setTypeIdAndData(0, (byte) 0, false);
|
2016-02-29 22:32:46 +01:00
|
|
|
+ return EnumInteractionResult.PASS;
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
|
|
|
itemstack.damage(1, entityhuman);
|