From 60819c6693daf19dde68b04af38a4fee8c7da988 Mon Sep 17 00:00:00 2001 From: Travis Watkins Date: Wed, 24 Oct 2012 22:53:23 -0500 Subject: Update CraftBukkit to Minecraft 1.4(.2). --- src/main/java/net/minecraft/server/ItemBlock.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/net/minecraft/server/ItemBlock.java') diff --git a/src/main/java/net/minecraft/server/ItemBlock.java b/src/main/java/net/minecraft/server/ItemBlock.java index c2b9d54f..e3fe0132 100644 --- a/src/main/java/net/minecraft/server/ItemBlock.java +++ b/src/main/java/net/minecraft/server/ItemBlock.java @@ -12,7 +12,7 @@ public class ItemBlock extends Item { this.c(Block.byId[i + 256].a(2)); } - public int f() { + public int g() { return this.id; } @@ -50,7 +50,7 @@ public class ItemBlock extends Item { if (itemstack.count == 0) { return false; - } else if (!entityhuman.e(i, j, k)) { + } else if (!entityhuman.a(i, j, k, l, itemstack)) { return false; } else if (j == 255 && Block.byId[this.id].material.isBuildable()) { return false; @@ -89,7 +89,7 @@ public class ItemBlock extends Item { // CraftBukkit end } - world.makeSound((double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), block.stepSound.getName(), (block.stepSound.getVolume1() + 1.0F) / 2.0F, block.stepSound.getVolume2() * 0.8F); + world.makeSound((double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), block.stepSound.b(), (block.stepSound.getVolume1() + 1.0F) / 2.0F, block.stepSound.getVolume2() * 0.8F); --itemstack.count; } @@ -99,7 +99,7 @@ public class ItemBlock extends Item { } } - public String c(ItemStack itemstack) { + public String c_(ItemStack itemstack) { return Block.byId[this.id].a(); } -- cgit v1.2.3