| 2340 | |
| 2341 | |
| 2342 | void cChunkMap::MarkChunkRegenerating(int a_ChunkX, int a_ChunkZ) |
| 2343 | { |
| 2344 | cCSLock Lock(m_CSLayers); |
| 2345 | cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, ZERO_CHUNK_Y, a_ChunkZ); |
| 2346 | if (Chunk == NULL) |
| 2347 | { |
| 2348 | // Not present |
| 2349 | return; |
| 2350 | } |
| 2351 | Chunk->MarkRegenerating(); |
| 2352 | } |
| 2353 | |
| 2354 | |
| 2355 |
no test coverage detected