[0.17.37] Setting seed for custom map preset does not work
Posted: Wed May 08, 2019 10:03 am
Action
create a mod with the following data.lua
(key MapGenSettings.seed from https://lua-api.factorio.com/latest/Con ... enSettings)
Expected Result
Preset has seed 392430818
Actual Result
Preset has random seed
This is probably a mistake in the documentation like viewtopic.php?f=11&t=69546. If it is not and it would help you reproduce the issue, I can provide a complete minimal example mod.
create a mod with the following data.lua
Code: Select all
data.raw["map-gen-presets"]["default"]["foo"] = {
order = "d",
basic_settings = {
seed = 392430818
}
}
Expected Result
Preset has seed 392430818
Actual Result
Preset has random seed
This is probably a mistake in the documentation like viewtopic.php?f=11&t=69546. If it is not and it would help you reproduce the issue, I can provide a complete minimal example mod.