Merge pull request #1112 from ItsMeElConquistador/master
Fix pipe rendering (issue #1111)
This commit is contained in:
commit
e705cec237
1 changed files with 6 additions and 0 deletions
|
@ -96,6 +96,12 @@ public class BlockGenericPipe extends BlockContainer {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@SideOnly(Side.CLIENT)
|
||||||
|
public boolean shouldSideBeRendered(IBlockAccess blockAccess, int x, int y, int z, int side) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isBlockSolidOnSide(World world, int x, int y, int z, ForgeDirection side) {
|
public boolean isBlockSolidOnSide(World world, int x, int y, int z, ForgeDirection side) {
|
||||||
TileEntity tile = world.getBlockTileEntity(x, y, z);
|
TileEntity tile = world.getBlockTileEntity(x, y, z);
|
||||||
|
|
Loading…
Reference in a new issue