Examples of onBlockRemoval()


Examples of logisticspipes.interfaces.ILegacyActiveModule.onBlockRemoval()

    if(MainProxy.isServer(this.getWorld())) {
      for (int i = 0; i < this.getChassiSize(); i++){
        LogisticsModule x = _module.getSubModule(i);
        if (x instanceof ILegacyActiveModule) {
          ILegacyActiveModule y = (ILegacyActiveModule)x;
          y.onBlockRemoval();
        }
      }
      for(int i=0;i<_moduleInventory.getSizeInventory();i++) {
        ItemIdentifierStack ms = _moduleInventory.getIDStackInSlot(i);
        if(ms != null) {
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.