could not get it to work with pyanodon , so i fixed the data-final-fixed.lua
replace line 43 to line 71 with this
-- generates a recipe to incinerate the specified non-fluid prototype
function incinerateRecipe(item, category, craft_category)
if type(item) ~= "table" or not item.name then
log("Warning: 'item' is not a valid table or is missing a name in category " .. tostring(category))
return -- Exit the function if item is not a table or if name is missing
end
local newicons = get_icons(item)
table.insert(newicons, no_icon)
data:extend({
{
type = "recipe",
name = category.."-"..item.name.."-incineration",
category = craft_category,
enabled = true,
hidden = true,
energy_required = 1,
ingredients =
{
{type = item.type, name = item.name, amount = 1}
},
results = {},
icons = newicons,
icon_size = 32,
subgroup = "fluid-recipes",
order = "zz[incineration]"
}
})
end
then i works