Update CraftBukkit to Minecraft 1.4.6

This commit is contained in:
feildmaster
2012-12-19 22:03:52 -06:00
parent 9f1bf124ee
commit 23b6764374
115 changed files with 1930 additions and 1426 deletions

View File

@@ -89,7 +89,7 @@ public class ItemSkull extends Item {
return i;
}
public String c_(ItemStack itemstack) {
public String d(ItemStack itemstack) {
int i = itemstack.getData();
if (i < 0 || i >= a.length) {
@@ -99,7 +99,7 @@ public class ItemSkull extends Item {
return super.getName() + "." + a[i];
}
public String j(ItemStack itemstack) {
return itemstack.getData() == 3 && itemstack.hasTag() && itemstack.getTag().hasKey("SkullOwner") ? LocaleI18n.get("item.skull.player.name", new Object[] { itemstack.getTag().getString("SkullOwner")}) : super.j(itemstack);
public String l(ItemStack itemstack) {
return itemstack.getData() == 3 && itemstack.hasTag() && itemstack.getTag().hasKey("SkullOwner") ? LocaleI18n.get("item.skull.player.name", new Object[] { itemstack.getTag().getString("SkullOwner")}) : super.l(itemstack);
}
}