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

Mortar CraftTweaker

Snownee edited this page May 28, 2019 · 1 revision

Importing

import mods.cuisine.Mortar;

Add Recipes

void add(IIngredient[] inputs, IItemStack output, int step);

Remove Recipes By ID

void remove(string identifier);

Remove Recipes By Input

void remove(IItemStack[] inputs);

Remove Recipes By Output

void removeByOutput(IIngredient output);

Clear Recipes

void removeAll();