Page 1 of 1

[1.1.50] Recursive attempted save loading?

Posted: Mon Jan 03, 2022 5:54 pm
by oof2win2
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

Code: Select all

count=0

while [ -d "temp"  ]
do
        cd temp/currently-playing
        let "count++"
        echo $count
done

echo $count
The server log has produced no useful information, even in verbose mode.

Re: [1.1.50] Recursive attempted save loading?

Posted: Sat Jan 08, 2022 4:13 pm
by Rseding91
Thanks for the report. It's now fixed for the next release.