Package pneumaticCraft.common.tileentity

Examples of pneumaticCraft.common.tileentity.IRedstoneControlled


        }
    }

    protected void addProblems(List<String> curInfo){
        if(te instanceof IRedstoneControlled && !te.redstoneAllows()) {
            IRedstoneControlled redstoneControlled = (IRedstoneControlled)te;
            curInfo.add("gui.tab.problems.redstoneDisallows");
            if(redstoneControlled.getRedstoneMode() == 1) {
                curInfo.add("gui.tab.problems.provideRedstone");
            } else {
                curInfo.add("gui.tab.problems.removeRedstone");
            }
        }
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.tileentity.IRedstoneControlled

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.