Update for Minecraft 1.8

This commit is contained in:
Dinnerbone
2011-09-15 01:23:52 +01:00
parent 54bcd1c1f3
commit 5b2c774edc
107 changed files with 4415 additions and 3504 deletions

View File

@@ -18,7 +18,7 @@ public class ItemSeeds extends Item {
public boolean a(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l) {
if (l != 1) {
return false;
} else {
} else if (entityhuman.c(i, j, k) && entityhuman.c(i, j + 1, k)) {
int i1 = world.getTypeId(i, j, k);
if (i1 == Block.SOIL.id && world.isEmpty(i, j + 1, k)) {
@@ -40,6 +40,8 @@ public class ItemSeeds extends Item {
} else {
return false;
}
} else {
return false;
}
}
}