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

Master Infusion Crystal Bug #5

Open
blakeroni1551 opened this issue Jul 12, 2021 · 2 comments
Open

Master Infusion Crystal Bug #5

blakeroni1551 opened this issue Jul 12, 2021 · 2 comments

Comments

@blakeroni1551
Copy link

Describe the bug:
Crafting the infernium blocks into prudentium blocks uses up the master infustion crystal when it is not supposed to.

To Reproduce:
Craft any of the block upgrade recipes for the infernium to impermium blocks and it will happen.

Expected behavior:
Supposed to not use up the master infusion crystal in the center of the recipe.

Screenshots:
https://imgur.com/a/dRfUOKL

Versions:

  • Minecraft: 1.16.5
  • Fabric: 0.11.3
  • Mystical Agriculture: Refabricated: 1.16
@HueboWasTaken
Copy link

same thing happening to me, infusion crystal is also being deleted by ae2 molecular assemblers and tech reborn auto crafter when crafting essence in block form AND non-block form

@hotdog95
Copy link

I have created a simple kubejs script to fix this issue, it replaces the recipes, just pop the file into server_scripts for what ever modpack you are using that has kubejs. if you don't have cube, I suggest looking up how to make datapacks and replace the files using that (same path as the mystical block recipes, "find a file" in GIT with the serch term "block_combine")

`events.listen("recipes", function (event) {
// prudentium_block
event.custom({
"type": "mysticalagriculture:infusion_crystal",
"pattern": [
" # ",
"#X#",
" # "
],
"key": {
"#": {
"item": "mysticalagriculture:inferium_block"
},
"X": {
"item": "mysticalagriculture:master_infusion_crystal"
}
},
"result": {
"item": "mysticalagriculture:prudentium_block"
}
}).id('mysticalagriculture:prudentium_block_combine')

// tertium_block
event.custom({
    "type": "mysticalagriculture:infusion_crystal",
    "pattern": [
        " # ",
        "#X#",
        " # "
    ],
    "key": {
        "#": {
        "item": "mysticalagriculture:prudentium_block"
        },
        "X": {
        "item": "mysticalagriculture:master_infusion_crystal"
        }
    },
    "result": {
        "item": "mysticalagriculture:tertium_block"
    }
}).id('mysticalagriculture:tertium_block_combine')


// imperium_block
event.custom({
    "type": "mysticalagriculture:infusion_crystal",
    "pattern": [
        " # ",
        "#X#",
        " # "
    ],
    "key": {
        "#": {
            "item": "mysticalagriculture:tertium_block"
        },
        "X": {
            "item": "mysticalagriculture:master_infusion_crystal"
        }
        },
    "result": {
        "item": "mysticalagriculture:imperium_block"
    }
}).id('mysticalagriculture:imperium_block_combine')

// supremium_block
event.custom({
    "type": "mysticalagriculture:infusion_crystal",
    "pattern": [
        " # ",
        "#X#",
        " # "
    ],
    "key": {
        "#": {
        "item": "mysticalagriculture:imperium_block"
        },
        "X": {
        "item": "mysticalagriculture:master_infusion_crystal"
        }
    },
    "result": {
        "item": "mysticalagriculture:supremium_block"
    }
}).id('mysticalagriculture:supremium_block_combine')

})`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants