1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-22 04:20:18 +02:00

ContentCAO: Fix segfault when minimap is disabled

This commit is contained in:
SmallJoker 2020-11-08 11:30:16 +01:00
parent 8c1871fa2c
commit c940a57a38

View File

@ -894,6 +894,9 @@ u16 GenericCAO::getLightPosition(v3s16 *pos)
void GenericCAO::updateMarker()
{
if (!m_client->getMinimap())
return;
if (!m_prop.show_on_minimap) {
if (m_marker)
m_client->getMinimap()->removeMarker(&m_marker);