Skip to content

Craft Tweaker

Christof Reimers edited this page Mar 20, 2022 · 1 revision

This mod also has craft tweaker support. This means you are able to add/remove recipes to/from the bloomery and kiln.

The Bloomery

The bloomery has the class mods.embersconstruct.Bloomery. It has the following methods:

Method Description
add(IIngredient inputA, IIngredient inputB, IItemStack output) adds a recipe with 2 inputs and one output
removeByInput(IItemStack input) removes all recipes having the given item stack as input
removeByInput(IItemStack inputA, IItemStack inputB) removes all recipes having the given item stacks as inputs
removeByOutput(IItemStack output) removes all recipes having the given item stack as output

The Kiln

The kiln has the class mods.embersconstruct.Kiln. It has the following methods:

Method Description
add(IIngredient input, IItemStack output) adds a recipe with one input and one output
removeInput(IItemStack input) removes all recipes having the given item stack as input
removeOutput(IItemStack output) removes all recipes having the given item stack as output

Warning! The remove methods will be named removeByInput and removeByOutput in the next update.