NovaEngineering-Source / ModularMachinery-Community-Edition

Customize your machinery with more powerful features.
https://www.curseforge.com/minecraft/mc-mods/modularmachinery-community-edition
GNU General Public License v3.0
31 stars 15 forks source link

A specific multiblock recipe is not working (doesn't show up in JEI or let me craft it), but works when I add or remove items from the recipe. #123

Open milesman34 opened 5 hours ago

milesman34 commented 5 hours ago

I am developing a modpack that uses MMCE. I am trying to add a custom recipe to one of my multiblocks using ZenScript. It contains 5 items and 2 fluids. The log says that 150 recipes were loaded successfully, but only 149 of them actually show up in JEI, with this one not showing up.

The recipe looks like this, but without the 6th item. When it has 6 items, it works, but when it has 5 items, it does not.

image

I am not sure why specifically 5 items + 2 fluids causes an issue, especially when other recipes I added did not have this issue.

The ZenScript for this original recipe is this:

mods.modularmachinery.RecipeBuilder.newBuilder(m + "advparallelizationcore", m, 2400)
    .addEnergyPerTickInput(20000000)
    .addItemOutput(<contenttweaker:advanced_parallelization_core>)
    .addItemInput(<contenttweaker:parallelization_core> * 4)
    .addItemInput(<nae2:storage_crafting_16384k>)
    .addItemInput(<avaritia:endest_pearl>)
    .addItemInput(<ore:plateCosmicNeutronium> * 16)
    .addItemInput(<extendedcrafting:material:13> * 2)
    .addFluidInput(<liquid:ultimate> * 9216)
    .addFluidInput(<liquid:stabilized_quantum_fluid> * 8000)
    .build();
KasumiNova commented 4 hours ago

can provide a full log and script?

milesman34 commented 4 hours ago

Script is https://gist.github.com/milesman34/d0b5af915f6a266932293da561a5d632

Crafttweaker log is https://gist.github.com/milesman34/f62add6ee0bf940e1ce4fafce07ad572

Latest log is https://gist.github.com/milesman34/bc48d33b03a55e3165919198ab789f46