Examples of IRedstoneControlled


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
Copyright © 2018 www.massapi.com. 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.