Powered Thingies :: Fluid Burner :: Coolant
Importing
import mods.poweredthingies.Tweaker.fluidBurnerCoolantTweaker as coolant;
Listing Keys, Removing Recipes by Key, Clearing
coolant().logKeys()coolant().removeRecipe('teslathingies:fluid_tf-molten_tesla') // check <logKeys> output for valid keyscoolant().clear()
Adding Recipe
Signature
addCoolant(fluid: ILiquidStack, timeMultiplier: Float)
timeMultiplier
is the value that will be used to increase (or decrease) the number ticks a fuel will burn for.
Example
coolant().addCoolant(<liquid:tf-sewage> * 50, 1.1);
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).