Use read API (avoid fixers running)

This commit is contained in:
Michael Primm 2023-05-09 14:17:43 -05:00 committed by Michael Primm
parent d1b95c9ae0
commit 4e61fa6b22
5 changed files with 48 additions and 38 deletions

View file

@ -67,7 +67,7 @@ public class ForgeMapChunkCache extends GenericMapChunkCache {
private CompoundTag readChunk(int x, int z) {
try {
return cps.chunkMap.readChunk(new ChunkPos(x, z));
return cps.chunkMap.read(new ChunkPos(x, z));
} catch (Exception exc) {
Log.severe(String.format("Error reading chunk: %s,%d,%d", dw.getName(), x, z), exc);
return null;