Package crazypants.enderio.machine.IMachineRecipe

Examples of crazypants.enderio.machine.IMachineRecipe.ResultStack


    if(!getSupportedSouls().contains(mobType)) {
      return new ResultStack[0];
    }
    ItemStack resultStack = getOutputStack(mobType);
    ItemStack soulVessel = new ItemStack(EnderIO.itemSoulVessel);   
    return new ResultStack[] {new ResultStack(soulVessel), new ResultStack(resultStack)};
  }
View Full Code Here


    stack.stackSize -= inserted;
    if(inserted >= origSize) {
      return origSize;
    }

    ResultStack[] in = new ResultStack[] { new ResultStack(stack) };
    mergeResults(in);
    return origSize - (in[0].item == null ? 0 : in[0].item.stackSize);

  }
View Full Code Here

TOP

Related Classes of crazypants.enderio.machine.IMachineRecipe.ResultStack

Copyright © 2018 www.massapicom. 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.