Powered Thingies :: Powered Kiln
Importing
import mods.poweredthingies.Tweaker.poweredKilnTweaker as pkt;
Listing Keys, Removing Recipes by Key, Clearing
pkt().logKeys()pkt().removeRecipe('minecraft:planks') // check <logKeys> output for valid keyspkt().clear()
Adding Recipe
Signature
addRecipe(input: IItemStack, output: IItemStack)
Example
pkt().addRecipe(<minecraft:bucket>, <minecraft:iron_ingot>);
Notes
All of these actions will get cached and ran after the default registry for this machine has finished registering all recipes (including the ones from the custom jsons).