From 341e0bf433b82fa7f6a0214ba8e1bc4b356117a4 Mon Sep 17 00:00:00 2001 From: Emerson Rosen-Jones Date: Sat, 20 Dec 2025 22:47:54 -0500 Subject: [PATCH] fix: properly requests biomass Fixes handling of tags --- biofuel-manager.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/biofuel-manager.lua b/biofuel-manager.lua index ff08bfd..1b90311 100644 --- a/biofuel-manager.lua +++ b/biofuel-manager.lua @@ -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)