ContentCAO: Fix segfault when minimap is disabled

master
SmallJoker 2020-11-08 11:30:16 +01:00
parent 8c1871fa2c
commit c940a57a38
1 changed files with 3 additions and 0 deletions

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);