mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
avoid crashing when accessing mapgen early (#5384)
This commit is contained in:
@@ -174,6 +174,9 @@ bool EmergeManager::initMapgens(MapgenParams *params)
|
||||
|
||||
Mapgen *EmergeManager::getCurrentMapgen()
|
||||
{
|
||||
if (!m_threads_active)
|
||||
return NULL;
|
||||
|
||||
for (u32 i = 0; i != m_threads.size(); i++) {
|
||||
if (m_threads[i]->isCurrentThread())
|
||||
return m_threads[i]->m_mapgen;
|
||||
|
Reference in New Issue
Block a user