Fix syntax error

This commit is contained in:
mathias 2019-08-06 21:00:02 +03:00
parent 7989b362e6
commit 5b2441142c
2 changed files with 3 additions and 3 deletions

View file

@ -13,10 +13,10 @@ git clone git@github.com:kaboomserver/schematics.git plugins/FastAsyncWorldEdit/
tmux new -d -s server 'sh -x script/server'
tmux new -d -s remote 'sh -x script/remote'
tmux new -d -s sync_schematics 'sh -x script/schematics'
tmux new -d -s schematics 'sh -x script/schematics'
#sleep 90
tmux new -d -s check_server 'sh -x script/alivecheck'
tmux new -d -s alivecheck 'sh -x script/alivecheck'
sleep infinity

View file

@ -3,7 +3,7 @@ while true; do
sleep 12
date="$(tail -1 $HOME/logs/latest.log | grep -oP '(?<=\[).*?(?=\])' | head -1 | date -f - +%s)"
if [ "$(env printf '\xFE' | nc -w 5 localhost 25565 | wc -m)" -eq 1 ] ||
[ "$(( $(date +%s) - "${date:=$(date +%s)}" ))" -gt 180 ]; then
[ "$(( $(date +%s) - ${date:=$(date +%s)} ))" -gt 180 ]; then
if [ "$(tail -20 $HOME/logs/latest.log | grep -c 'ERROR]: Requested chunk')" -eq 1 ]; then
rm -rf $HOME/worlds/
fi