Remade kelp textures

This commit is contained in:
Matt Caughey 2013-09-12 17:40:37 -04:00
parent 7ba5e1fede
commit 249a7f1d8b
5 changed files with 3 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 536 B

After

Width:  |  Height:  |  Size: 653 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 580 B

After

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 558 B

After

Width:  |  Height:  |  Size: 608 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 475 B

After

Width:  |  Height:  |  Size: 387 B

View file

@ -72,7 +72,7 @@ public class BlockBOPCoral extends BlockFlower
@Override
protected boolean canThisPlantGrowOnThisBlockID(int id)
{
return id == Block.dirt.blockID || id == Block.sand.blockID || id == Block.sponge.blockID || id == blockID;
return id == Block.dirt.blockID || id == Block.sand.blockID || id == Block.sponge.blockID || id == Block.stone.blockID || id == Block.blockClay.blockID || id == blockID;
}
protected boolean canThisPlantGrowOnThisBlockID(int id, int metadata)
@ -82,7 +82,7 @@ public class BlockBOPCoral extends BlockFlower
if (metadata == 2)
return id == blockID;
else
return id == Block.dirt.blockID || id == Block.sand.blockID || id == Block.sponge.blockID;
return id == Block.dirt.blockID || id == Block.sand.blockID || id == Block.sponge.blockID || id == Block.stone.blockID || id == Block.blockClay.blockID;
}
@Override
@ -101,7 +101,7 @@ public class BlockBOPCoral extends BlockFlower
return id == blockID;
default:
return id == Block.dirt.blockID || id == Block.sand.blockID || id == Block.sponge.blockID;
return id == Block.dirt.blockID || id == Block.sand.blockID || id == Block.sponge.blockID || id == Block.stone.blockID || id == Block.blockClay.blockID;
}
} else
return this.canPlaceBlockOnSide(world, x, y, z, side);