forked from mirrors/NBTExplorer
Fixed cache resolution bug when deleting chunks
This commit is contained in:
parent
5a764a0e3a
commit
3c7ab4d035
1 changed files with 1 additions and 1 deletions
|
@ -504,7 +504,7 @@ namespace Substrate
|
|||
|
||||
rf.DeleteChunk(lcx, lcz);
|
||||
|
||||
ChunkKey k = new ChunkKey(lcx, lcz);
|
||||
ChunkKey k = new ChunkKey(ChunkGlobalX(lcx), ChunkGlobalZ(lcz));
|
||||
_cache.Remove(k);
|
||||
|
||||
if (ChunkCount() == 0) {
|
||||
|
|
Loading…
Reference in a new issue