diff --git a/minecraft-server/start-deployFTB b/minecraft-server/start-deployFTB index c8a0c4e6..9d3b3f2a 100755 --- a/minecraft-server/start-deployFTB +++ b/minecraft-server/start-deployFTB @@ -73,8 +73,20 @@ if [[ $startScriptCount = 0 ]]; then fi if [[ $(find ${FTB_BASE_DIR} $entryScriptExpr |wc -l) = 0 ]]; then - echo "Please make sure you are using the server version of the FTB modpack!" - exit 2 + + forgeJar=$(find ${FTB_BASE_DIR} -name 'forge*.jar' -a -not -name 'forge*installer') + if [[ $forgeJar ]]; then + echo "No entry script found, so building one for ${forgeJar}" + cat > ${FTB_BASE_DIR}/ServerStart.sh <