removed some potential bugs from some items

This commit is contained in:
Andrew Ardill
2011-01-24 00:10:53 +11:00
parent a809e4e6e3
commit ab3412e878
3 changed files with 17 additions and 16 deletions

View File

@@ -28,7 +28,10 @@ public class ItemSign extends Item {
}
// CraftBukkit - store the clicked block
CraftWorld craftWorld = ((WorldServer) world).getWorld();
CraftServer craftServer = ((WorldServer) world).getServer();
org.bukkit.block.Block blockClicked = craftWorld.getBlockAt(i, j, k);
if (l == 1) {
j++;
}
@@ -50,13 +53,9 @@ public class ItemSign extends Item {
// CraftBukkit start
// Signs
CraftWorld craftWorld = ((WorldServer) world).getWorld();
CraftServer craftServer = ((WorldServer) world).getServer();
Type eventType = Type.PLAYER_ITEM;
Player who = (entityplayer == null)?null:(Player)entityplayer.getBukkitEntity();
org.bukkit.inventory.ItemStack itemInHand = new CraftItemStack(itemstack);
org.bukkit.block.Block blockClicked = craftWorld.getBlockAt(i, j, k);
BlockFace blockface = CraftBlock.notchToBlockFace(1);
PlayerItemEvent pie = new PlayerItemEvent(eventType, who, itemInHand, blockClicked, blockface);