[Bug]: Quantum Cricut Board recipe makes super conduct coil
cameron581 opened this issue · 4 comments
Possible Fixes
Yes
Modpack Version
0.60
What happened?
Every time I put the recipe into the assembler no matter ingredient order it takes 8 of the 12 super conductor cables and makes a super conductor coil instead of the circuit board.
latest.log
No response
Developer reports
No response
You have to lock the output of the assembler to only make quantum circuit board, bit annoying but that is how I have it working at the moment. Dedicate one assembler to the circuit boards and have only that one pattern being provided to it (if you have a pattern provider pushing into it).
Hope that helps
I have the same issue. Any suggestions for a workaround to fix it?
A temporary fix is to add a custom recipe for it.
For example i added my recipe in /kubejs/server_scripts/Tweaks/recipes.js
just add
ServerEvents.recipes(allthemods => {
allthemods.shaped(
'modern_industrialization:quantum_circuit_board',
[
'AAA',
'BCD',
'EEE'
],
{
A: 'modern_industrialization:superconductor_cable',
B: 'modern_industrialization:plutonium_battery',
C: 'modern_industrialization:processing_unit_board',
D: 'modern_industrialization:plutonium_battery',
E: 'alltheores:iridium_plate'
}
);
});
to the file and reload ingame with /reload.
Its not perfect, but better than nothing.