return conduit.getOutputValues(world, x, y, z, side);
}
@Override
public int getOutputValue(World world, int x, int y, int z, ForgeDirection side, int subnet) {
IRedstoneConduit conduit = getRedstoneConduit(world, x, y, z);
if(conduit == null) {
return 0;
}
return conduit.getOutputValue(world, x, y, z, side, subnet);
}