diff --git a/minecraft-server/start-finalSetup01World b/minecraft-server/start-finalSetup01World index c1caa1f8..201f6685 100755 --- a/minecraft-server/start-finalSetup01World +++ b/minecraft-server/start-finalSetup01World @@ -1,6 +1,10 @@ #!/bin/bash -worldDest=/data/$LEVEL +if [ $TYPE = "FEED-THE-BEAST" ]; then + worldDest=$FTB_BASE_DIR/$LEVEL +else + worldDest=/data/$LEVEL +fi # If no world exists and a URL for a world is supplied, download it and unpack if [[ "$WORLD" ]] && [ ! -d "$worldDest" ]; then