[0.9.2] Robots not using frames
Posted: Sat Mar 08, 2014 2:13 am
The logistics/construction robots aren't using the Flying robot frames and are only using the circuit.
Can we fix it editing a lua file?kovarex wrote:Yes, this slipped here, fixed for 0.9.3
Yes. It's in data/base/prototypes/recipe/recipe.luaEstebanLB wrote:Can we fix it editing a lua file?kovarex wrote:Yes, this slipped here, fixed for 0.9.3
Code: Select all
{
type = "recipe",
name = "logistic-robot",
enabled = "false",
ingredients =
{
{"advanced-circuit", 2}
},
result = "logistic-robot"
},
{
type = "recipe",
name = "construction-robot",
enabled = "false",
ingredients =
{
{"flying-robot-frame", 1},
{"electronic-circuit", 2}
},
result = "construction-robot"
},
Code: Select all
recipies:
game.player.force.resetrecipes()
technologies:
game.player.force.resettechnologies()