| 169 | |
| 170 | |
| 171 | void cChunk::MarkRegenerating(void) |
| 172 | { |
| 173 | // Tell all clients attached to this chunk that they want this chunk: |
| 174 | for (cClientHandleList::iterator itr = m_LoadedByClient.begin(); itr != m_LoadedByClient.end(); ++itr) |
| 175 | { |
| 176 | (*itr)->AddWantedChunk(m_PosX, m_PosZ); |
| 177 | } // for itr - m_LoadedByClient[] |
| 178 | } |
| 179 | |
| 180 | |
| 181 |
no test coverage detected