so i just discovered this mod, and wanted to use it on my already existing world, but the oil patches didnt generate (obviously). is there any way to spawn them in using console? i tried the normal command for spawning oil changing it from oil to deep oil, but they generate with 0% productivity. any help?
command i used:
/c local position=nil
for i=1,9 do
position=game.player.surface.find_non_colliding_position("deep_oil", game.player.position, 0, i/2+1.5)
if position then
game.player.surface.create_entity({name="deep_oil", amount=100000, position=position})
end
end