Search in sources :

Example 1 with MoistenerRecipeCategory

use of forestry.factory.recipes.jei.moistener.MoistenerRecipeCategory in project ForestryMC by ForestryMC.

the class FactoryJeiPlugin method registerCategories.

@Override
public void registerCategories(IRecipeCategoryRegistration registry) {
    if (!ForestryAPI.enabledModules.contains(new ResourceLocation(Constants.MOD_ID, ForestryModuleUids.FACTORY))) {
        return;
    }
    jeiHelpers = registry.getJeiHelpers();
    IGuiHelper guiHelper = jeiHelpers.getGuiHelper();
    registry.addRecipeCategories(new BottlerRecipeCategory(guiHelper), new CarpenterRecipeCategory(guiHelper), new CentrifugeRecipeCategory(guiHelper), new FabricatorRecipeCategory(guiHelper), new FermenterRecipeCategory(guiHelper), new MoistenerRecipeCategory(guiHelper), new RainmakerRecipeCategory(guiHelper), new SqueezerRecipeCategory(guiHelper), new StillRecipeCategory(guiHelper));
}
Also used : IGuiHelper(mezz.jei.api.IGuiHelper) SqueezerRecipeCategory(forestry.factory.recipes.jei.squeezer.SqueezerRecipeCategory) CarpenterRecipeCategory(forestry.factory.recipes.jei.carpenter.CarpenterRecipeCategory) ResourceLocation(net.minecraft.util.ResourceLocation) BottlerRecipeCategory(forestry.factory.recipes.jei.bottler.BottlerRecipeCategory) RainmakerRecipeCategory(forestry.factory.recipes.jei.rainmaker.RainmakerRecipeCategory) CentrifugeRecipeCategory(forestry.factory.recipes.jei.centrifuge.CentrifugeRecipeCategory) MoistenerRecipeCategory(forestry.factory.recipes.jei.moistener.MoistenerRecipeCategory) FabricatorRecipeCategory(forestry.factory.recipes.jei.fabricator.FabricatorRecipeCategory) StillRecipeCategory(forestry.factory.recipes.jei.still.StillRecipeCategory) FermenterRecipeCategory(forestry.factory.recipes.jei.fermenter.FermenterRecipeCategory)

Aggregations

BottlerRecipeCategory (forestry.factory.recipes.jei.bottler.BottlerRecipeCategory)1 CarpenterRecipeCategory (forestry.factory.recipes.jei.carpenter.CarpenterRecipeCategory)1 CentrifugeRecipeCategory (forestry.factory.recipes.jei.centrifuge.CentrifugeRecipeCategory)1 FabricatorRecipeCategory (forestry.factory.recipes.jei.fabricator.FabricatorRecipeCategory)1 FermenterRecipeCategory (forestry.factory.recipes.jei.fermenter.FermenterRecipeCategory)1 MoistenerRecipeCategory (forestry.factory.recipes.jei.moistener.MoistenerRecipeCategory)1 RainmakerRecipeCategory (forestry.factory.recipes.jei.rainmaker.RainmakerRecipeCategory)1 SqueezerRecipeCategory (forestry.factory.recipes.jei.squeezer.SqueezerRecipeCategory)1 StillRecipeCategory (forestry.factory.recipes.jei.still.StillRecipeCategory)1 IGuiHelper (mezz.jei.api.IGuiHelper)1 ResourceLocation (net.minecraft.util.ResourceLocation)1