[1.1.50] Recursive attempted save loading?
Posted: Mon Jan 03, 2022 5:54 pm
When a server is told to load the latest save (--start-server-load-latest) and the save directory (set to servers/) is blank, it attempts to load something, but instead loads the server directory recursively.
With this I found that the folders recursed for 12 levels in 21 seconds, netting a 3gb temp/ folder in the original server directory
The server log has produced no useful information, even in verbose mode.
With this I found that the folders recursed for 12 levels in 21 seconds, netting a 3gb temp/ folder in the original server directory
Code: Select all
count=0
while [ -d "temp" ]
do
cd temp/currently-playing
let "count++"
echo $count
done
echo $count