Update BlockBOPCoral.java

Fixed null itemStack causing crash. Fixes #529 and #519
This commit is contained in:
wwrpg 2015-09-02 21:15:36 -07:00
parent e31395e99e
commit 075e54c1da
1 changed files with 2 additions and 1 deletions

View File

@ -76,7 +76,8 @@ public class BlockBOPCoral extends BOPBlock
@Override
public boolean canReplace(World world, int x, int y, int z, int side, ItemStack itemStack)
{
return world.getBlock(x, y + 1, z) == Blocks.water && this.canBlockStay(world, x, y, z, itemStack.getItemDamage());
int metadata = itemStack != null ? itemStack.getItemDamage() : 0;
return world.getBlock(x, y + 1, z) == Blocks.water && this.canBlockStay(world, x, y, z, metadata);
}
@Override