Examples of playerStopWatching()


Examples of logisticspipes.interfaces.IBlockWatchingHandler.playerStopWatching()

  @Override
  public void processPacket(EntityPlayer player) {
    IBlockWatchingHandler tile = this.getTile(player.worldObj, IBlockWatchingHandler.class);
    if(tile != null) {
      tile.playerStopWatching(player);
    }
  }
}
View Full Code Here

Examples of logisticspipes.interfaces.IWatchingHandler.playerStopWatching()

    if(pipe == null) {
      return;
    }
    if(pipe.pipe instanceof IWatchingHandler) {
      IWatchingHandler handler = (IWatchingHandler) pipe.pipe;
      handler.playerStopWatching(player, getInteger());
    }
  }
}
View Full Code Here

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

        pipe.playerStartWatching(player, 0);
      }
     
      @Override
      public void guiClosedByPlayer(EntityPlayer player) {
        pipe.playerStopWatching(player, 0);
      }
    });
    dummy.addNormalSlotsForPlayerInventory(0, 0);
    // TAB_1 SLOTS
    for(int pipeSlot = 0; pipeSlot < 9; pipeSlot++) {
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.