2011-01-08 12:18:05 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
// CraftBukkit start
|
2011-01-08 12:18:05 +01:00
|
|
|
import org.bukkit.craftbukkit.CraftBlock;
|
|
|
|
import org.bukkit.craftbukkit.CraftItemStack;
|
|
|
|
import org.bukkit.craftbukkit.CraftPlayer;
|
|
|
|
import org.bukkit.event.Event.Type;
|
|
|
|
import org.bukkit.event.player.PlayerItemEvent;
|
2011-01-10 22:37:16 +01:00
|
|
|
import org.bukkit.event.block.BlockIgniteEvent;
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-08 12:18:05 +01:00
|
|
|
|
|
|
|
public class ItemFlintAndSteel extends Item {
|
|
|
|
|
|
|
|
public ItemFlintAndSteel(int i) {
|
|
|
|
super(i);
|
2011-01-14 14:31:10 +01:00
|
|
|
bb = 1;
|
|
|
|
bc = 64;
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a(ItemStack itemstack, EntityPlayer entityplayer, World world, int i, int j, int k, int l) {
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit - get the clicked block
|
2011-01-08 12:18:05 +01:00
|
|
|
CraftBlock blockClicked = (CraftBlock) ((WorldServer) world).getWorld().getBlockAt(i, j, k);
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-08 12:18:05 +01:00
|
|
|
if (l == 0) {
|
|
|
|
j--;
|
|
|
|
}
|
|
|
|
if (l == 1) {
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
if (l == 2) {
|
|
|
|
k--;
|
|
|
|
}
|
|
|
|
if (l == 3) {
|
|
|
|
k++;
|
|
|
|
}
|
|
|
|
if (l == 4) {
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
if (l == 5) {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
int i1 = world.a(i, j, k);
|
|
|
|
|
|
|
|
if (i1 == 0) {
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start - Flint and steel
|
2011-01-08 12:18:05 +01:00
|
|
|
CraftItemStack itemInHand = new CraftItemStack(itemstack);
|
|
|
|
CraftPlayer thePlayer = new CraftPlayer(((WorldServer) world).getServer(), (EntityPlayerMP) entityplayer);
|
|
|
|
PlayerItemEvent pie = new PlayerItemEvent(Type.PLAYER_ITEM, thePlayer, itemInHand, blockClicked, CraftBlock.notchToBlockFace(l));
|
|
|
|
((WorldServer) world).getServer().getPluginManager().callEvent(pie);
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-10 22:37:16 +01:00
|
|
|
org.bukkit.Block pblock = (((WorldServer) world).getWorld().getBlockAt(i, j, k));
|
|
|
|
BlockIgniteEvent bie = new BlockIgniteEvent((org.bukkit.Block) pblock, BlockIgniteEvent.IgniteCause.FLINT_AND_STEEL, thePlayer);
|
|
|
|
((WorldServer) world).getServer().getPluginManager().callEvent(bie);
|
|
|
|
|
2011-01-08 12:18:05 +01:00
|
|
|
boolean preventLighter = pie.isCancelled();
|
2011-01-10 22:37:16 +01:00
|
|
|
boolean preventFire = bie.isCancelled();
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-10 22:37:16 +01:00
|
|
|
if (preventLighter || preventFire) {
|
2011-01-08 12:18:05 +01:00
|
|
|
return false;
|
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
world.a((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "fire.ignite", 1.0F, b.nextFloat() * 0.4F + 0.8F);
|
2011-01-14 14:31:10 +01:00
|
|
|
world.e(i, j, k, Block.ar.bi);
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
|
|
|
itemstack.b(1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|