mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 01:53:45 +01:00
avoid crashing when accessing mapgen early (#5384)
This commit is contained in:
parent
d31750cb93
commit
ba0a8dabef
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user