Package logisticspipes.modules.abstractmodules

Examples of logisticspipes.modules.abstractmodules.LogisticsModule.writeToNBT()


      LogisticsModule module = LogisticsPipes.ModuleItem.getModuleForItem(new ItemStack(LogisticsPipes.ModuleItem, 1, i), null, null, null);
      if(module != null) {
        NBTTagCompound nbt = new NBTTagCompound();
        boolean force = false;
        try {
          module.writeToNBT(nbt);
        } catch(Exception e) {
          force = true;
        }
        if(!nbt.equals(new NBTTagCompound()) || force) {
          craftingManager.addShapelessResetRecipe(LogisticsPipes.ModuleItem, i);
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.