Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Quantum Cricut Board recipe makes super conduct coil #674

Open
cameron581 opened this issue Oct 3, 2024 · 4 comments
Open

[Bug]: Quantum Cricut Board recipe makes super conduct coil #674

cameron581 opened this issue Oct 3, 2024 · 4 comments
Labels
Bug Something isn't working

Comments

@cameron581
Copy link

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

@cameron581 cameron581 added the Bug Something isn't working label Oct 3, 2024
@Blade-jpeg
Copy link

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

@dennis6981
Copy link

dennis6981 commented Oct 16, 2024

Recipe not working. and you workaround "lock the recipe" is also not working.
2024-10-16_04 50 32

PS: When add the recipe from JEI to the Assembler, i get a recipe with the old Iridum plate.

2024-10-16_05 04 32

@Chazafen
Copy link

I have the same issue. Any suggestions for a workaround to fix it?

@Chazafen
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants