Enigmatica 6 - E6 - 1.16.5

Enigmatica 6 - E6 - 1.16.5

1M Downloads

Refined storage autocraft conflicts

Thelm76 opened this issue ยท 5 comments

commented

Modpack Version

0.5.11

Describe your issue

I was not able to autocraft raw tuna from sushi go crafting with the ressourceful bee recipe.

There are multiple results from the same craft (cucumber, nori sheets and raw tuna) :
image

And the pattern doesn't allow to choose between results :
image

I think it is related to the fact the patterns don't store the result in its NBTs :

{
    Input_4:
    {
        id:"resourcefulbees:wax",
        Count:1b
    },
    Version:1,
    Input_0:
    {
        id:"resourcefulbees:wasabee_honeycomb",
        Count:1b
    },
    Exact:0b,
    Input_6:
    {
        id:"resourcefulbees:wasabee_honeycomb",
        Count:1b
    },
    Processing:0b
}

This applies to every other "multi-result" crafting recipe that I tried.
The easy fix would be to make an unique crafting recipe for every item, to make autocrafting available.

Crash Report

No response

Latest Log

No response

Have you modified the modpack?

Yes

User Modifications

Server :
Installed server-side optimisation mods :

  • starlight-forge-1.0.0-RC2-1.16.5.jar
  • sodium-forge-2.9.10.jar

Updated server starter to 2.1.0

Client :
Unmodified

Did the issue happen in singleplayer or on a server?

Both

commented

These... are supposed to have unique recipes. I'll review them tomorrow.

commented

The offending recipes are:

{
            output: Item.of('sushigocrafting:cucumber',3),
            pattern: [' A ', '  B', ' A '],
            key: {
                A: 'resourcefulbees:wasabee_honeycomb',
                B: 'resourcefulbees:wax'
            }
        },
        {
            output: Item.of('sushigocrafting:raw_tuna',3),
            pattern: ['A  ', ' B ', 'A  '],
            key: {
                A: 'resourcefulbees:wasabee_honeycomb',
                B: 'resourcefulbees:wax'
            }
        },
        {
            output: Item.of('sushigocrafting:nori_sheets',3),
            pattern: ['  A', ' B ', '  A'],
            key: {
                A: 'resourcefulbees:wasabee_honeycomb',
                B: 'resourcefulbees:wax'
            }
        },

@Thelm76 Can you put up some screenshots of what this looks like in JEI?

Edit: the first two are suffering from white space compression, I'll need to adjust one of the recipes. The last - the nori - should be a different recipe.

commented

The recipes in JEI are the same :
image
image
image

but the crafting for nori sheets also work for cucumber :
image

image

image

commented

The same applies for the shrimp/salmon :
image

image

And also some other items share the same recipe like BLT/Bacon sandwich (which is less annoying) :
image
image
image

To be honest I don't know the extent of this "bug" as I just encountered it... I know there are other crafts broken as I needed to click on the double arrow some other times, but didn't figured it was unintentional because the game didn't block me earlier.

commented

I've fixed the main issue; I'm not positive that we've touched those BLT recipes, but I'll take a peek later.