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
|
@ -95,6 +95,12 @@ public class BlockGenericPipe extends BlockContainer {
|
|||
public boolean renderAsNormalBlock() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public boolean shouldSideBeRendered(IBlockAccess blockAccess, int x, int y, int z, int side) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isBlockSolidOnSide(World world, int x, int y, int z, ForgeDirection side) {
|
||||
|
|
Loading…
Reference in a new issue