Update BlockBOPSapling.java

Fixed null itemStack causing crash. Fixes #529 and #519
This commit is contained in:
wwrpg 2015-09-02 21:19:55 -07:00
parent a953962f6b
commit eb31520be4
1 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,8 @@ public class BlockBOPSapling extends BlockSapling
@Override
public boolean canReplace(World world, int x, int y, int z, int side, ItemStack itemStack)
{
return this.canPlaceBlockAt(world, x, y, z) && this.isValidPosition(world, x, y, z, itemStack.getItemDamage());
int metadata = itemStack != null ? itemStack.getItemDamage() : 0;
return this.canPlaceBlockAt(world, x, y, z) && this.isValidPosition(world, x, y, z, metadata);
}
/**