Tech Reborn

Tech Reborn

30M Downloads

Incorrect recipes removing

EngineerXL opened this issue ยท 3 comments

commented

Mods:
CraftTweaker 4.1.9
TechReborn 2.17.1.786
RebornCore 3.10.0.332

Issue: Trying to remove lava recipe from centrifuge, but CraftTweaker removes ALL recipes included any amount of any cells. So, I got Helium-3 recipe removed too...

Script: mods.techreborn.centrifuge.removeInputRecipe(techreborn:dynamiccell.withTag({Fluid: {FluidName: "lava", Amount: 1000}})*16);

CraftTweaker.log: https://pastebin.com/puBL4yCx

Additional: same issue occurs with all machines, e.g. Electrolyzer recipes

commented

Also I have another problem... If I set OreDict value in machines recipes [tested with Electolyzer and Centrifuge], it will ignore count of items [LOL]
Script: <ore:boneMeal>.add(<minecraft:dye:15>); industrialElectrolyzer.addRecipe(<techreborn:dynamiccell>.withTag({Fluid: {FluidName: "fluidcalcium", Amount: 1000}}), null, null, null, <ore:boneMeal>*3, <techreborn:dynamiccell>, 20, 106); centrifuge.addRecipe(<techreborn:dynamiccell>.withTag({Fluid: {FluidName: "fluidmethane", Amount: 1000}}), null, null, null, <ore:listAllfruit>*32, <techreborn:dynamiccell>, 5000, 5);
image
image

commented

Can you try to remove recipe with the following CT script, please?

mods.techreborn.centrifuge.removeInputRecipe(<techreborn:dynamiccell>.withTag({Fluid: {FluidName: "lava", Amount: 1000}}) * 16);
commented

Please, see comment regarding oredict usage here: #1592