소스 검색

Attempt to fix permanently opened region files
This line successfully closes files that are no longer tied to any
loaded chunk. It was sometimes problematic on large servers.
However, since I'm not completely sure if it doesn't provoke any data
loss or error, I've commented it out, waiting for a verification or
approval.

bm01 12 년 전
부모
커밋
f61aed9f6c
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/main/java/com/gmail/nossr50/util/blockmeta/chunkmeta/HashChunkManager.java

+ 2 - 0
src/main/java/com/gmail/nossr50/util/blockmeta/chunkmeta/HashChunkManager.java

@@ -219,6 +219,8 @@ public class HashChunkManager implements ChunkManager {
                 removalCheckedMobs.clear();
                 iteratingMobs = false;
             }
+
+            // closeChunkStore(world, cx, cz);
         }
     }