Hopefully this will help the mod author. The new Bobs and Angels update screwed up "space-location prototype "nauvis" (planet): bob-cobalt-ore (entity) does not have an autoplace specification."
Bob's Ores 2.1.1 no longer creates all ore autoplace definitions immediately.
Angel's Refining 2.0.4 assumes those autoplace definitions already exist.
Below is the Temp fix.
Edit data.lua inside angelsmods refining mod zip
change false to true:
angelsmods.refining.disable_ore_override = true
make a mod (a folder and 2 txt;rename the file type for both files below). This code places bob-cobalt-ore into the autoplace definitions.
FILE
info.json
{
"name": "angels-bob-ore-fix",
"version": "1.0.0",
"title": "Angels Bob Ore Fix",
"author": "Helixx",
"factorio_version": "2.0",
"dependencies": [
"base >= 2.0",
"? bobores",
"? angelsrefining"
]
}
FILE
data-final-fixes.lua
if bobmods
and bobmods.ores
and bobmods.ores.cobalt
and bobmods.ores.cobalt.create_autoplace then
bobmods.ores.cobalt.create_autoplace()
log("Compatibility Fix: Created autoplace for bob-cobalt-ore")
end
Hope this helps