Examples of activatePipeSign()


Examples of logisticspipes.pipes.basic.CoreRoutedPipe.activatePipeSign()

   
    CoreRoutedPipe pipe = (CoreRoutedPipe) ((LogisticsTileGenericPipe)tile).pipe;
    if(pipe == null) { return false; }
    if(!player.isSneaking()) {
      if(pipe.hasPipeSign(dir)) {
        pipe.activatePipeSign(dir, player);
        return true;
      } else if(mode >= 0 && mode < signTypes.size()) {
        Class<? extends IPipeSign> signClass = signTypes.get(mode);
        try {
          IPipeSign sign = signClass.newInstance();
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.