} else {
curInfo.add("gui.tab.problems.removeRedstone");
}
}
if(te instanceof IMinWorkingPressure) {
IMinWorkingPressure minWork = (IMinWorkingPressure)te;
if(((TileEntityPneumaticBase)te).getPressure(ForgeDirection.UNKNOWN) < minWork.getMinWorkingPressure()) {
curInfo.add("gui.tab.problems.notEnoughPressure");
curInfo.add(I18n.format("gui.tab.problems.applyPressure", minWork.getMinWorkingPressure()));
}
}
}