From 91f28e34a22309e8d08000210ee773b08a12a471 Mon Sep 17 00:00:00 2001 From: Entroper Date: Tue, 6 Jun 2017 13:20:10 -0400 Subject: [PATCH] add map-settings.json config file --- 0.15/docker-entrypoint.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/0.15/docker-entrypoint.sh b/0.15/docker-entrypoint.sh index abf0fa1..60c1e23 100755 --- a/0.15/docker-entrypoint.sh +++ b/0.15/docker-entrypoint.sh @@ -21,10 +21,15 @@ if [ ! -f $CONFIG/map-gen-settings.json ]; then cp /opt/factorio/data/map-gen-settings.example.json $CONFIG/map-gen-settings.json fi +if [ ! -f $CONFIG/map-settings.json ]; then + cp /opt/factorio/data/map-settings.example.json $CONFIG/map-settings.json +fi + if ! find -L $SAVES -iname \*.zip -mindepth 1 -print | grep -q .; then /opt/factorio/bin/x64/factorio \ --create $SAVES/_autosave1.zip \ - --map-gen-settings $CONFIG/map-gen-settings.json + --map-gen-settings $CONFIG/map-gen-settings.json \ + --map-settings $CONFIG/map-settings.json fi exec /opt/factorio/bin/x64/factorio \