private void RemoveChunk(int x, int z)
 {
     if (Cache.ChunkCanBeRemoved(x, z))
     {
         Cache.RemoveChunk(x, z);
     }
 }