Skip to content
This repository has been archived by the owner on Oct 31, 2021. It is now read-only.

Mill CraftTweaker

Snownee edited this page May 28, 2019 · 1 revision

Importing

import mods.cuisine.Mill;

Add Recipes

void add(IIngredient input, ILiquidStack inputFluid, IItemStack output, ILiquidStack outputFluid);

Remove Recipes By ID

void remove(string identifier);

Remove Recipes By Input

void remove(IItemStack input, ILiquidStack inputFluid);

void remove(IOreDictEntry input, ILiquidStack inputFluid);

Clear Recipes

void removeAll();