Page 1 of 1

My item won't go into the furnace..

Posted: Fri Apr 15, 2016 8:11 pm
by YoloJoe
This code is set up as "Zofg-Smelting.lua" and requred in the data.lua file:

Code: Select all

data:extend(
{
  {
    type = "recipe",
    name = "Zofg-Ingot",
    category = "smelting",
    enabled = false,
    energy_required = 13,
    ingredients = {{"Zofg-Ore", 5}},
    result = "Zofg-Ingot"
  }
}
)
Still I can't put the 'Zofg Ingot' into my furnace ingame? Am I missing something?

Re: My item won't go into the furnace..

Posted: Fri Apr 15, 2016 8:23 pm
by Arch666Angel
If you want to test it, you have to enable the recipe.

Recipes are either enabled from the start, then set enabled=true, or they can be unlocked by research, then set enabled=false

Re: My item won't go into the furnace..

Posted: Fri Apr 15, 2016 9:51 pm
by YoloJoe
Arch666Angel wrote:If you want to test it, you have to enable the recipe.

Recipes are either enabled from the start, then set enabled=true, or they can be unlocked by research, then set enabled=false

Wow thanks, that makes a lot of sense! Thanks a lot! :D