Examples of ISoulBinderRecipe


Examples of crazypants.enderio.machine.soul.ISoulBinderRecipe

    if(recipes.isEmpty()) {
      return;
    }
    for (IMachineRecipe recipe : recipes.values()) {
      if(recipe instanceof ISoulBinderRecipe) {
        ISoulBinderRecipe sbr = (ISoulBinderRecipe) recipe;
        if(sbr.getOutputStack().isItemEqual(result)) {
          arecipes.add(new SoulBinderRecipeNEI((ISoulBinderRecipe) recipe));
        }
      }
    }
  }
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.