Skip to content

Commit

Permalink
Fix DarknessFalls server config location (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
eduser25 authored May 25, 2024
1 parent 3ca8e6c commit 23944b1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/Mods/darkness_falls.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ cp -r darknessFalls-temp/Mods/0-DarknessFallsCore/Worlds/* $SERVER_FOLDER/Data/W

echo "[Darkness Falls] Change Darkness Falls server settings"

cp darknessFalls-temp/$DF_CONFIG $SERVER_FOLDER/sdtdserver.xml
if [ "${VERSION::7}" == 'alpha21' ]; then
cp darknessFalls-temp/Mods/$DF_CONFIG $SERVER_FOLDER/sdtdserver.xml
elif [ "${VERSION::7}" == 'alpha20' ]; then
cp darknessFalls-temp/$DF_CONFIG $SERVER_FOLDER/sdtdserver.xml
fi

echo "[Darkness Falls] Change default map"

Expand Down

0 comments on commit 23944b1

Please sign in to comment.