te.factorizer
Tweaks involving the Factorizer from Thermal Expansion.
Note
The factorizer command can be used to view recipes.
split.add
te.factorizer.split.add : item output, input input
Add a split recipe to the factorizer.
Example
#split emerald into 9 diamonds
te.factorizer.split.add : item(minecraft:diamond).count(9), item(minecraft:emerald);
split.remove
te.factorizer.split.remove : all *
te.factorizer.split.remove : item input
Remove all split recipes or recipes with the specified input.
Example
#disable all split recipes
te.factorizer.split.remove : *;
#disable splitting emerald
te.factorizer.split.remove : item(minecraft:emerald);
combine.add
te.factorizer.combine.add : item output, input input
Add a combine recipe to the factorizer.
Example
#combine 9 diamonds into and emerald
te.factorizer.combine.add : item(minecraft:emerald), item(minecraft:diamond).count(9);
combine.remove
te.factorizer.combine.remove : all *
te.factorizer.combine.remove : item input
Remove all combine recipes or recipes with the specified input.
Example
#disable all combine recipes
te.factorizer.combine.remove : *;
#disable combining diamonds
te.factorizer.combine.remove : item(minecraft:diamond).count(9);
