Update to Minecraft 1.8
For more information please see http://www.spigotmc.org/ By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
47
paper-server/nms-patches/ItemFlintAndSteel.patch
Normal file
47
paper-server/nms-patches/ItemFlintAndSteel.patch
Normal file
@@ -0,0 +1,47 @@
|
||||
--- ../work/decompile-bb26c12b/net/minecraft/server/ItemFlintAndSteel.java 2014-11-27 08:59:46.781421494 +1100
|
||||
+++ src/main/java/net/minecraft/server/ItemFlintAndSteel.java 2014-11-27 08:42:10.152850911 +1100
|
||||
@@ -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() {
|
||||
@@ -9,13 +14,32 @@
|
||||
}
|
||||
|
||||
public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, BlockPosition blockposition, EnumDirection enumdirection, float f, float f1, float f2) {
|
||||
+ BlockPosition clicked = blockposition; // CraftBukkit
|
||||
blockposition = blockposition.shift(enumdirection);
|
||||
if (!entityhuman.a(blockposition, enumdirection, itemstack)) {
|
||||
return false;
|
||||
} else {
|
||||
if (world.getType(blockposition).getBlock().getMaterial() == Material.AIR) {
|
||||
- world.makeSound((double) blockposition.getX() + 0.5D, (double) blockposition.getY() + 0.5D, (double) blockposition.getZ() + 0.5D, "fire.ignite", 1.0F, ItemFlintAndSteel.g.nextFloat() * 0.4F + 0.8F);
|
||||
+ // 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);
|
||||
+ return false;
|
||||
+ }
|
||||
+
|
||||
+ CraftBlockState blockState = CraftBlockState.getBlockState(world, blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
||||
+ // CraftBukkit end
|
||||
+
|
||||
+ world.makeSound((double) blockposition.getX() + 0.5D, (double) blockposition.getY() + 0.5D, (double) blockposition.getZ() + 0.5D, "fire.ignite", 1.0F, g.nextFloat() * 0.4F + 0.8F);
|
||||
world.setTypeUpdate(blockposition, Blocks.FIRE.getBlockData());
|
||||
+
|
||||
+ // CraftBukkit start
|
||||
+ org.bukkit.event.block.BlockPlaceEvent placeEvent = CraftEventFactory.callBlockPlaceEvent(world, entityhuman, blockState, clicked.getX(), clicked.getY(), clicked.getZ());
|
||||
+
|
||||
+ if (placeEvent.isCancelled() || !placeEvent.canBuild()) {
|
||||
+ placeEvent.getBlockPlaced().setTypeIdAndData(0, (byte) 0, false);
|
||||
+ return false;
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
}
|
||||
|
||||
itemstack.damage(1, entityhuman);
|
||||
Reference in New Issue
Block a user