Fix unloading chunks with save = false still saves

Unless it was there for an undocumented reason, it should pass the save flag
This commit is contained in:
PatoTheBest 2020-03-23 16:23:07 -06:00 committed by GitHub
parent 259fcc2f29
commit d6ad34788b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ public class AsyncChunk implements Chunk {
@Override
public boolean unload(boolean save) {
return unload(true, false);
return unload(save, false);
}
@Override