Package pneumaticCraft.common.tileentity

Examples of pneumaticCraft.common.tileentity.IMinWorkingPressure


            } 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()));
            }
        }
    }
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.tileentity.IMinWorkingPressure

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.