diff --git a/files/auto/autopause-fcns.sh b/files/auto/autopause-fcns.sh index 975227cd203..7a40cca78db 100644 --- a/files/auto/autopause-fcns.sh +++ b/files/auto/autopause-fcns.sh @@ -24,7 +24,9 @@ java_clients_connections() { local connections if java_running ; then if ! connections=$(mc-monitor status --host localhost --port "$SERVER_PORT" --show-player-count); then - connections=0 + # consider it a non-zero player count if the ping fails + # otherwise a laggy server with players connected could get paused + connections=1 fi else connections=0