Enabled glass facades

Closes #606
This commit is contained in:
Krapht 2013-01-28 22:02:09 +01:00
parent 9d20450f81
commit 06b938d007

View file

@ -102,11 +102,14 @@ public class ItemFacade extends ItemBuildCraft {
} catch (Exception e) {
continue;
}
if (b.blockID == 7 || b.blockID == 18 || b.blockID == 19 || b.blockID == 95) {
continue;
}
if (!b.isOpaqueCube() || b.hasTileEntity(0) || !b.renderAsNormalBlock()) {
continue;
if (!(b.blockID == 20)){
if (b.blockID == 7 || b.blockID == 18 || b.blockID == 19 || b.blockID == 95) {
continue;
}
if (!b.isOpaqueCube() || b.hasTileEntity(0) || !b.renderAsNormalBlock()) {
continue;
}
}
ItemStack base = new ItemStack(b, 1);
if (base.getHasSubtypes()) {