Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 611 Bytes

quern.md

File metadata and controls

21 lines (18 loc) · 611 Bytes
layout title permalink excluded_in_search
page
Quern Recipes
/1.12.x/crafttweaker/quern/
true

Quern Recipes

// Imports Quern methods into your script
import mods.terrafirmacraft.Quern;
// Adds a recipe with the given parameters
Quern.addRecipe(String registryName, IIngredient input, IItemStack output)
// Removes all recipes that have a given output
Quern.removeRecipe(IItemStack output)
// Removes a single recipe by registry name
Quern.removeRecipe(String registryName)

This is a basic input -> output recipe, so, it works like adding a furnace recipe, but without ticks.