modded-factorio / SeaBlock

Factorio mod pack Sea Block
https://mods.factorio.com/mod/SeaBlock
MIT License
21 stars 18 forks source link

Platinum smelting recipes disabled #174

Closed Danacus closed 3 years ago

Danacus commented 3 years ago

All smelting recipes for platinum appear to be disabled in the latest main branch. The technology for platinum smelting does not exist, but "Advanced platinum casting 2" does exist.

KiwiHawk commented 3 years ago

Can you please upload a save file showing the issue? I can't recreate it

Danacus commented 3 years ago

Seablock.1.1.zip

The save file was recently upgraded from factorio 0.18 and might even go back to 0.17 or 0.16. It also has a more mods that are not in seablock that might be the cause of the issue. If it can't be reproduced in new saves, I might have to run some lua in the console to fix it manually.

Danacus commented 3 years ago

I just checked and the "Advanced platinum casting 1" technology exists in new saves with my mods, but not in the save I just uploaded.

Danacus commented 3 years ago

I was able to fix this issue by running /c game.get_player(1).force.technologies["angels-platinum-smelting-1"].enabled = true.

KiwiHawk commented 3 years ago

You'll also want to run

/c game.get_player(1).force.technologies["angels-platinum-smelting-2"].enabled = true
/c game.get_player(1).force.technologies["angels-platinum-smelting-3"].enabled = true
Danacus commented 3 years ago

Thanks! I didn't notice I was missing those too.