You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This call is made asynchronously which will call World#save() on all currently loaded worlds - if this is called asynchronously it has the potential to either crash the server or corrupt regionfile data
I see the other call to save in your code is scheduled onto the main thread - perhaps this was left as a mistake?
The text was updated successfully, but these errors were encountered:
I would also recommend looking disabling chunk saving when the server is making a backup - the last thing you want to backup is a mixed regionfile. See World#setAutoSave / World#isAutoSave
https://github.com/ZombieStriker/ServerRestorer/blob/master/src/me/zombie_striker/sr/Main.java#L276
This call is made asynchronously which will call World#save() on all currently loaded worlds - if this is called asynchronously it has the potential to either crash the server or corrupt regionfile data
I see the other call to save in your code is scheduled onto the main thread - perhaps this was left as a mistake?
The text was updated successfully, but these errors were encountered: