I'm trying to make incinerator.
The idea is it will be basicly furnace, that can destroy specific item to nothing while creating polution.
so how do I make a recipie that has no product?
Can I use something like this?
Code: Select all
data:extend(
{
{
type = "recipe",
name = "basic-waste",
category = "waste",
enabled = false,
energy_required = 17.5,
ingredients = {{"some.item-here", 1}},
result = nil
}
})