Ah, that disallows transparant facades - check rendertype instead
This commit is contained in:
parent
086e99b167
commit
a8da61a86b
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@ public class ItemFacade extends ItemBuildCraft implements IFacadeItem, IPipePlug
|
|||
if (block == null) {
|
||||
return;
|
||||
}
|
||||
if (!block.renderAsNormalBlock())
|
||||
if (block.getRenderType() != 0)
|
||||
return;
|
||||
|
||||
String recipeId = "buildcraft:facade{" + Block.blockRegistry.getNameForObject(block) + "#"
|
||||
|
|
Loading…
Reference in a new issue