Catch chunk errors

This commit is contained in:
mathias 2019-07-27 13:40:15 +03:00
parent 0b7c29b352
commit 25df9c6f3a

View file

@ -35,6 +35,9 @@ sleep 90
while true; do
sleep 120
if [ "$(env printf '\xFE' | nc -w 5 localhost 25565 | wc -m)" -eq 0 ]; then
if tail -20 $HOME/logs/latest.log | grep -c 'ERROR]: Requested chunk'; then
rm -rf $HOME/worlds/
fi
kill -9 $(pgrep java)
fi
done &