Tfarcenim / crafting-station

crafting station
7 stars 21 forks source link

[1.16.5] Unsure how to blacklist containers #80

Closed faeldray closed 3 years ago

faeldray commented 3 years ago

From what I've been able to piece together from various sources is that in order to accomplish blacklisting a container from the crafting station, I need to:

So I created a blacklisted.json file inside a datapack in the directory data\craftingstation\tags\block_entity_types. And this is the code inside:

{
    "replace":false,
    "values": [
        "druidcraft:crate",
        "enderchests:ender_chest.tile"
    ]
}

But the containers are still showing up on the crafting station's tabs. I'm new at creating datapacks so it's possible I got something wrong. Any help would be greatly appreciated.

Tfarcenim commented 3 years ago

That's been changed, Extra Tags is no longer needed and it's now tile_entity_types due to a Forge change.

faeldray commented 3 years ago

That worked, thanks!