![Quality Crops](https://media.forgecdn.net/avatars/thumbnails/853/973/256/256/638257820274607729.png)
[Forge - 1.19.2]: Modded items in tags are not set to optional
SiverDX opened this issue ยท 3 comments
[18Oct2023 18:08:31.870] [Worker-ResourceReload-4/ERROR] [net.minecraft.tags.TagLoader/]: [Load My Fucking Tags] Couldn't load certain entries with the tag forge:gold/raw_fishes: qualitysdelight:cod_slice_gold (from QualityCrops-1.19.2-1.3.0.jar), qualitysdelight:salmon_slice_gold (from QualityCrops-1.19.2-1.3.0.jar)
[18Oct2023 18:08:31.877] [Worker-ResourceReload-4/ERROR] [net.minecraft.tags.TagLoader/]: [Load My Fucking Tags] Couldn't load certain entries with the tag forge:iron/cooked_fishes: qualitysdelight:cooked_cod_slice_iron (from QualityCrops-1.19.2-1.3.0.jar), qualitysdelight:cooked_salmon_slice_iron (from QualityCrops-1.19.2-1.3.0.jar)
[18Oct2023 18:08:31.881] [Worker-ResourceReload-4/ERROR] [net.minecraft.tags.TagLoader/]: [Load My Fucking Tags] Couldn't load certain entries with the tag forge:diamond/cooked_fishes: qualitysdelight:cooked_cod_slice_diamond (from QualityCrops-1.19.2-1.3.0.jar), qualitysdelight:cooked_salmon_slice_diamond (from QualityCrops-1.19.2-1.3.0.jar)
{
"values": [
"qualitysdelight:cod_slice_gold",
"qualitysdelight:salmon_slice_gold"
]
}
should be
(can also be done in datagen)
{
"values": [
{ "id": "qualitysdelight:cod_slice_gold",, "required": false },
{ "id": "qualitysdelight:salmon_slice_gold", "required": false }
]
}
This will normally break those tags
Also what's the difference between /<rarity>/raw_fishes
and /<rarity>/raw_fishes/raw_fishes
?
I think the second one is a mistake
Also it would be helpful if you could add your items to the generic forge tags, not just the custom quality variants
(which by the way should be in your namespace, not the forge
namespace)