Remade kelp textures
Before Width: | Height: | Size: 536 B After Width: | Height: | Size: 653 B |
Before Width: | Height: | Size: 580 B After Width: | Height: | Size: 634 B |
Before Width: | Height: | Size: 558 B After Width: | Height: | Size: 608 B |
Before Width: | Height: | Size: 475 B After Width: | Height: | Size: 387 B |
|
@ -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);
|
||||
|
|