Steps to reproduce
- Start a new unmodded game
- Save game
- Exit to menu/title screen
- Enable the mod Rainbow Ore
- After factorio reloads, load your save
- Reveal new chunks. (You will not see rainbow ore)
- Try running (Rainbow ore will not be generated)
Code: Select all
/c game.regenerate_entity("rainbow-ore")
- Try running (Rainbow ore will not be generated)
Code: Select all
/c game.planets.nauvis.surface.regenerate_entity("rainbow-ore")
- Run
Code: Select all
/c local surface = game.player.surface local resource = "rainbow-ore" local mgs = surface.map_gen_settings mgs.autoplace_controls[resource] = {} mgs.autoplace_controls[resource].size = "very-high" mgs.autoplace_controls[resource].frequency = "very-high" mgs.autoplace_controls[resource].richness = "very-high" surface.map_gen_settings = mgs
- Confirm the map_gen_settings were updatated with (You should see it output "2")
Code: Select all
/c game.player.print(game.planets.nauvis.surface.map_gen_settings.autoplace_controls["rainbow-ore"].size)
- Repeat steps 6,7,8 and note that rainbow ore is still not autoplaced.
Edit to add: proper workaround found in a later reply.