BioTech for 0.16


Produce science packs and rocket parts using biological and renewable materials

Content
4 years ago
0.16 - 0.17
6
Manufacturing

g Recipe Help

5 years ago

Hi, I have one problem, I want to add some ingredients into recipe for Wind Turbine.
But if I add something into ingredients list error occurs when starting game.
In case that I just only change the ingredients it is ok.

Please cna you help me to solve this. Thanks so much.

5 years ago

Hey,

you simply edit the "recipes.lua" in "prototypes/WindTurbine".

there you will find the following code:

ingredients =
{
  {"iron-plate", 8},
  {"iron-gear-wheel", 4},
  {"copper-cable", 8},
  {"iron-stick", 5}
},

edit it like this:

ingredients =
{
  {"electric-engine-unit", 2},
  {"iron-gear-wheel", 4},
  {"copper-cable", 8},
  {"iron-stick", 5}
},

and that's it! You done.

New response