TheLMiffy1111 / JAOPCA

A mod that aims to add ore processing compatibilty to many mods. Inspired by AOBD.
MIT License
40 stars 36 forks source link

[1.15.2] Blocks added for empty tags #163

Closed JaisDK closed 4 years ago

JaisDK commented 4 years ago

Hi,

My mod adds a bunch of empty ingot tags so I can use them in recipes when they are populated from other mods. This however leads to JAOPCA creating block recipes for some of these ingots even when the tag is empty. I've tried running my mod without these empty tags, but unfortunately they have to exist for recipe validation.

2020-07-21 00_00_55-Minecraft_ 1 15 2 - Singleplayer

TheLMiffy1111 commented 4 years ago

You can add this to your recipe file to avoid adding empty tags:


"conditions": [
    {
        "type": "forge:not",
        "value": {
            "type": "forge:tag_empty",
            "tag": "forge:ingots/tungsten"
        }
    }
]
JaisDK commented 4 years ago

I indeed has errors in the conditions for some of the recipes. Thanks!