mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
Weather support
This commit is contained in:
@@ -488,6 +488,14 @@ void *EmergeThread::Thread() {
|
||||
if (block)
|
||||
modified_blocks[p] = block;
|
||||
|
||||
// Update weather data in mapblock
|
||||
for(std::map<v3s16, MapBlock *>::iterator
|
||||
i = modified_blocks.begin();
|
||||
i != modified_blocks.end(); ++i) {
|
||||
map->getHeat(m_server->m_env, MAP_BLOCKSIZE*i->first ,i->second);
|
||||
map->getHumidity(m_server->m_env, MAP_BLOCKSIZE*i->first, i->second);
|
||||
}
|
||||
|
||||
// Set the modified blocks unsent for all the clients
|
||||
for (std::map<u16, RemoteClient*>::iterator
|
||||
i = m_server->m_clients.begin();
|
||||
|
Reference in New Issue
Block a user