Powered Thingies :: Fluid Compound Producer
Importing
import mods.poweredthingies.Tweaker.fluidCompoundTweaker as fct;
Listing Keys, Removing Recipes by Key, Clearing
fct().logKeys()fct().removeRecipe('liquid:fluid_tf-molten_tesla') // check <logKeys> output for valid keysfct().clear()
Adding Recipe
Signature
addRecipe(output: ILiquidStack, inputA: ILiquidStack, inputB: ILiquidStack)
Example
fct().addRecipe(<liquid:tf-sewage> * 150, <liquid:water> * 300, <liquid:lava> * 100);
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).