mirror of
https://github.com/minetest/minetest.git
synced 2025-04-17 07:40:05 +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()
|
Mapgen *EmergeManager::getCurrentMapgen()
|
||||||
{
|
{
|
||||||
|
if (!m_threads_active)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
for (u32 i = 0; i != m_threads.size(); i++) {
|
for (u32 i = 0; i != m_threads.size(); i++) {
|
||||||
if (m_threads[i]->isCurrentThread())
|
if (m_threads[i]->isCurrentThread())
|
||||||
return m_threads[i]->m_mapgen;
|
return m_threads[i]->m_mapgen;
|
||||||
|
Reference in New Issue
Block a user