fix: properly requests biomass

Fixes handling of tags
This commit is contained in:
Emerson Rosen-Jones 2025-12-20 22:47:54 -05:00
parent da0344ecb5
commit 341e0bf433

View file

@ -43,14 +43,14 @@ local order = {
"minecraft:honeycomb"
}
} },
{ tags = {
["minecraft:flowers"] = true,
["c:crops"] = true,
["createaddition:plant_foods"] = true,
["createaddition:plants"] = true,
["minecraft:saplings"] = true,
["minecraft:leaves"] = true,
} },
{ tags = { _op = "any", value = {
{ ["minecraft:flowers"] = true },
{ ["c:crops"] = true },
{ ["createaddition:plant_foods"] = true },
{ ["createaddition:plants"] = true },
{ ["minecraft:saplings"] = true },
{ ["minecraft:leaves"] = true },
} } },
}
}
return ticker.requestFiltered(BIOMASS_PKG, request)