Fixed spacing issue

This commit is contained in:
Gethec
2022-08-03 16:05:18 -05:00
parent 9250c45297
commit 608c28d4fe

View File

@@ -18,7 +18,7 @@ START_COMMAND="./start-tModLoader.sh -server -tmlsavedirectory ~/saves -modpath
# Add secure flag if enabled # Add secure flag if enabled
if [ $SECURE_SERVER ]; then if [ $SECURE_SERVER ]; then
START_COMMAND = ${START_COMMAND} + " -secure" START_COMMAND=$START_COMMAND+" -secure"
fi fi
# Perform startup logic # Perform startup logic
@@ -29,7 +29,7 @@ else
echo -e "${RED}Auto-generation is disabled and the specified world file \"${WORLD_NAME}\" is not present! Upload a world file with the correct name, or change startup settings to generate a world." echo -e "${RED}Auto-generation is disabled and the specified world file \"${WORLD_NAME}\" is not present! Upload a world file with the correct name, or change startup settings to generate a world."
exit 1 exit 1
else else
START_COMMAND = ${START_COMMAND} + " -autocreate ${WORLD_SIZE} -worldname \"${WORLD_NAME}\" -seed \"${WORLD_SEED}\"" START_COMMAND=${START_COMMAND}+" -autocreate ${WORLD_SIZE} -worldname \"${WORLD_NAME}\" -seed \"${WORLD_SEED}\""
echo -e $START_COMMAND echo -e $START_COMMAND
fi fi
fi fi