And it is true))
Thus, the resource is increased only at the starting area, after studying the technology "geothermal source", and then with each new technology studied.
I thought it was necessary or not, but in the end I did not refuse. You still can not put more than one geothermal reactor on this spot. Any other resources found on the map are not replenished.
You can open the control.lua file yourself and comment out the following.
script.on_event(defines.events.on_research_finished, function(event)
for , force in pairs(game.forces) do
for ,research in pairs({"termal"}) do
reapply_research(force, research)
end
end
end)
To do this, put -- before each line, It should look like this
-- script.on_event(defines.events.on_research_finished, function(event)
-- for , force in pairs(game.forces) do
-- for ,research in pairs({"termal"}) do
-- reapply_research(force, research)
-- end
-- end
-- end)
And your resource on the starting area will not be replenished.