JDKDigital / productive-bees

Useful bees
https://www.curseforge.com/minecraft/mc-mods/productivebees
Other
58 stars 40 forks source link

Quartz Enriched Iron has incorrect conditions produce #386

Closed asantmier closed 1 year ago

asantmier commented 1 year ago

Minecraft 1.19.2 Forge 43.2.11 Productive Bees 0.10.7.0

I was having issues disabling the quartz enriched iron bee for Refined Storage on my modded server because the server kept giving me this error when I tried connecting: image

Upon closer inspection, I found that the recipe productivebees:bee_produce/refinedstorage/quartz_enriched_iron 's conditions are:

"conditions": [
    {
        "type": "forge:mod_loaded",
        "modid": "refinedstorage"
    }
]

only checking if the mod is loaded rather than the bee, like in other recipes. This is what the bee from Spirit looks like for example:

"conditions": [
    {
        "type": "productivebees:bee_exists",
        "bee": "productivebees:spirit"
    }
]

I simply disabled the recipe to get it working on my end, but that condition needs to be be changed to conform with the others and fix this error.

JaisDK commented 1 year ago

👍

JaisDK commented 1 year ago

fixed