Powered Thingies :: Powered Kiln

Link to powered-thingies--powered-kiln

ZenScript
Copy
import mods.poweredthingies.Tweaker.poweredKilnTweaker as pkt;

Listing Keys, Removing Recipes by Key, Clearing

Link to listing-keys-removing-recipes-by-key-clearing

ZenScript
Copy
pkt().logKeys()
pkt().removeRecipe('minecraft:planks') // check <logKeys> output for valid keys
pkt().clear()
ZenScript
Copy
addRecipe(input: IItemStack, output: IItemStack)
ZenScript
Copy
pkt().addRecipe(<minecraft:bucket>, <minecraft:iron_ingot>);

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).