squidy5 / cargo_ships

factorio mod that adds cargo ships and other content to the game
25 stars 40 forks source link

missing deep sea oil with factorio world mod #7

Closed squidy5 closed 6 years ago

squidy5 commented 6 years ago

mods that change terrain(water?) generation like factorio world result in no deap sea oil being placed

ArcaniVictus commented 6 years ago

You have to add Factorio World as a dependent for Cargo Ships. This forces Cargo ships to load after Factorio World and it fixes the issues with deep sea oil's spawn data being overridden by Factorio World.

This can be done very easily.

Once edited info.json should look exactly as below: { "name": "cargo-ships", "version": "0.0.16", "title": "Cargo Ships", "author": "rude_grass", "description": "Adds cargo ships, oil tankers and deep sea oil rigs", "dependencies": ["base >= 0.16", "factorio-world >= 0.16.1"], "factorio_version": "0.16" }

squidy5 commented 6 years ago

thanks!