Examples of ManyToOneMachineRecipe


Examples of crazypants.enderio.machine.recipe.ManyToOneMachineRecipe

  @Override
  public void loadRecipesFromConfig() {
    super.loadRecipesFromConfig();
    MachineRecipeRegistry.instance.registerRecipe(
        ModObject.blockSliceAndSplice.unlocalisedName,
        new ManyToOneMachineRecipe("SpliceAndSpliceRecipe",
            ModObject.blockAlloySmelter.unlocalisedName, this));
  }
View Full Code Here

Examples of crazypants.enderio.machine.recipe.ManyToOneMachineRecipe

    return new VanillaFurnaceTagHandler();
  }

  public void loadRecipesFromConfig() {
    super.loadRecipesFromConfig();
    MachineRecipeRegistry.instance.registerRecipe(ModObject.blockAlloySmelter.unlocalisedName, new ManyToOneMachineRecipe("AlloySmelterRecipe", ModObject.blockAlloySmelter.unlocalisedName, this));
    //vanilla alloy furnace recipes   
    MachineRecipeRegistry.instance.registerRecipe(ModObject.blockAlloySmelter.unlocalisedName, vanillaRecipe);
  }
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.