public int getBlockMetadata(int x, int y, int z) {
Block block = super.getBlock(x, y, z);
if(block == EnderIO.blockConduitBundle) {
TileEntity te = getTileEntity(x, y, z);
if(te instanceof TileConduitBundle) {
TileConduitBundle tcb = (TileConduitBundle)te;
Block fac = tcb.getFacadeId();
if(fac != null) {
return tcb.getFacadeMetadata();
}
}
}
return super.getBlockMetadata(x, y, z);
}