ModTweaker allows you to add or remove forestry Squeezer Recipes

You can call the package using mods.forestry.Squeezer

Beware, you cannot remove the recipes that fill or drain fluid containers, such as forestry cans!

ZenScript
Copy
//mods.forestry.Squeezer.removeRecipe(ILiquidStack liquid, @Optional IIngredient[] ingredients);
mods.forestry.Squeezer.removeRecipe(<liquid:juice>);
mods.forestry.Squeezer.removeRecipe(<liquid:seed.oil>, [<minecraft:wheat_seeds>]);
ZenScript
Copy
//mods.forestry.Squeezer.addRecipe(ILiquidStack fluidOutput, IItemStack[] ingredients, int timePerItem, @Optional WeightedItemStack itemOutput);
//mods.forestry.Squeezer.addRecipe(<liquid:lava>, [<minecraft:redstone>], 120);
mods.forestry.Squeezer.addRecipe(<liquid:lava>, [<minecraft:obsidian>], 120, <minecraft:redstone> % 20);
ParameterTypedescription
Parameter
fluidOutput
Type
ILiquidStack
description
The Recipe's output
Parameter
ingredients
Type
IItemStack[]
description
The Recipe's item input(s)
Parameter
timePerItem
Type
int
description
Amount of inputFluid on organic item requires
Parameter
itemOutput
Type
WeightedItemStack
description
Output multiplier