ModTweaker

ModTweaker

88M Downloads

using a for loop to add recipes in a oredict entry works... kind of

JavaBeanJohnny opened this issue · 5 comments

commented

so I am trying to add fluid transposer extract recipes in a couple of the oredict categories, with this code

for item in <ore:logWood>.items {

mods.thermalexpansion.Transposer.addExtractRecipe(200,
item, <minecraft:planks>, xpjuice * 60, 100);

}

for item in <ore:treeLeaves>.items {

mods.thermalexpansion.Transposer.addExtractRecipe(200,
item, <minecraft:stick>, xpjuice * 90, 100);

}

for item in <ore:treeSapling>.items {

mods.thermalexpansion.Transposer.addExtractRecipe(200,
item, <minecraft:stick>, xpjuice * 300, 100);

}

and as far as making the recipes, it works perfectly. I can see all of them in NEI. but the fluid transposer wont accept any of the items that are supposed to be valid

commented

TE bug.
1.7.10 is no longer supported.

commented
commented

is there a way to fix it? can i just go to a earlier version of TE?

commented
commented

when did it stop being supported?