diff --git a/README.md b/README.md
index 3f4ba93..bde3b75 100644
--- a/README.md
+++ b/README.md
@@ -40,6 +40,8 @@ With a custom Minecraft version (add -e Version=1.X.X, must be present on Paper'
docker run -it -v yourvolumename:/minecraft -p 25565:25565 -p 19132:19132/udp -p 19132:19132 -e Version=1.17.1 05jchambers/legendary-minecraft-geyser-floodgate:latest
With a maximum memory limit in megabytes (optional, prevents crashes on platforms with limited memory, -e MaxMemory=2048):
docker run -it -v yourvolumename:/minecraft -p 25565:25565 -p 19132:19132/udp -p 19132:19132 -e MaxMemory=2048 05jchambers/legendary-minecraft-geyser-floodgate:latest
+Without using the screen application (useful if the container won't launch saying "Must be connected to a terminal.", will disable some logging features):
+docker run -it -v yourvolumename:/minecraft -p 25565:25565 -p 19132:19132/udp -p 19132:19132 -e NoScreen=Y 05jchambers/legendary-minecraft-geyser-floodgate:latest
Configuration / Accessing Server Files
The server data is stored where Docker stores your volumes. This is typically a folder on the host OS that is shared and mounted with the container.
@@ -94,7 +96,8 @@ A popular place to get plugins is: issue #1)
August 18th 2022
diff --git a/start.sh b/start.sh
index 4489770..85f0650 100755
--- a/start.sh
+++ b/start.sh
@@ -176,12 +176,14 @@ if [[ -z "$MaxMemory" ]] || [[ "$MaxMemory" -le 0 ]]; then
if [ -z "$NoScreen" ]; then
screen -L -Logfile /minecraft/logs/minecraft.$(date +%Y.%m.%d.%H.%M.%S).log -mS minecraft /jre/bin/java -XX:+UnlockDiagnosticVMOptions -XX:-UseAESCTRIntrinsics -DPaper.IgnoreJavaVersion=true -Xms400M -jar /minecraft/paperclip.jar
else
+ echo "NoScreen switch present -- launching without screen (logging will be negatively impacted)"
/jre/bin/java -XX:+UnlockDiagnosticVMOptions -XX:-UseAESCTRIntrinsics -DPaper.IgnoreJavaVersion=true -Xms400M -jar /minecraft/paperclip.jar
fi
else
if [ -z "$NoScreen" ]; then
screen -L -Logfile /minecraft/logs/minecraft.$(date +%Y.%m.%d.%H.%M.%S).log -mS minecraft /jre/bin/java -XX:+UnlockDiagnosticVMOptions -XX:-UseAESCTRIntrinsics -DPaper.IgnoreJavaVersion=true -Xms400M -Xmx${MaxMemory}M -jar /minecraft/paperclip.jar
else
+ echo "NoScreen switch present -- launching without screen (logging will be negatively impacted)"
/jre/bin/java -XX:+UnlockDiagnosticVMOptions -XX:-UseAESCTRIntrinsics -DPaper.IgnoreJavaVersion=true -Xms400M -Xmx${MaxMemory}M -jar /minecraft/paperclip.jar
fi
fi