Examples of showRangeLines()


Examples of pneumaticCraft.common.tileentity.TileEntitySecurityStation.showRangeLines()

                TileEntitySecurityStation station = (TileEntitySecurityStation)te;
                if(station.hasValidNetwork()) {
                    if(Math.abs(station.xCoord - x) <= station.getSecurityRange() && Math.abs(station.yCoord - y) <= station.getSecurityRange() && Math.abs(station.zCoord - z) <= station.getSecurityRange()) {
                        if(!station.doesAllowPlayer(player)) {
                            blockingStations++;
                            if(showRangeLines) station.showRangeLines();
                        }
                    }
                }
            }
        }
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.