From 269f25080253e3449ffbff62e6a238b38d641d32 Mon Sep 17 00:00:00 2001 From: Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com> Date: Tue, 1 Oct 2024 01:35:35 +0200 Subject: [PATCH] refactor(client): remove workaround for reviving died players Removed a workaround in entrypoint.sh that revived died players periodically using xdotool key presses. --- client/entrypoint.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/client/entrypoint.sh b/client/entrypoint.sh index 02c36bb..4112cd7 100644 --- a/client/entrypoint.sh +++ b/client/entrypoint.sh @@ -44,10 +44,3 @@ function finish { exit 0 } trap finish EXIT TERM INT QUIT - -# Workaround to revive died players -while : -do - sleep 10 - xdotool key --delay 100 KP_Enter -done