@Override
  public int isProvidingStrongPower(IBlockAccess iblockaccess, int x, int y, int z, int l) {
    Pipe pipe = getPipe(iblockaccess, x, y, z);

    if (isValid(pipe)) return pipe.isPoweringTo(l);
    else return 0;
  }