Examples of LogisticsTileGenericPipe


Examples of logisticspipes.pipes.basic.LogisticsTileGenericPipe

    super(id);
  }

  @Override
  public void processPacket(EntityPlayer player) {
    LogisticsTileGenericPipe tile = this.getPipe(player.getEntityWorld());
    if(tile != null) {
      ((CoreRoutedPipe) tile.pipe).debug.debugThisPipe = !((CoreRoutedPipe) tile.pipe).debug.debugThisPipe;
      if(((CoreRoutedPipe) tile.pipe).debug.debugThisPipe) {
        player.addChatComponentMessage(new ChatComponentText("Debug enabled on Server"));
      } else {
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.