Package crazypants.enderio.machine.recipe

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


    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

Related Classes of crazypants.enderio.machine.recipe.ManyToOneMachineRecipe

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.