From a8da61a86bf11d2564631b97eecc170e92eaa9bb Mon Sep 17 00:00:00 2001 From: Arona Jones Date: Sun, 1 Feb 2015 16:11:18 +0000 Subject: [PATCH] Ah, that disallows transparant facades - check rendertype instead --- common/buildcraft/transport/ItemFacade.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/buildcraft/transport/ItemFacade.java b/common/buildcraft/transport/ItemFacade.java index 5ed7116a..952a8474 100644 --- a/common/buildcraft/transport/ItemFacade.java +++ b/common/buildcraft/transport/ItemFacade.java @@ -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) + "#"