mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
ContentCAO: Fix segfault when minimap is disabled
This commit is contained in:
parent
8c1871fa2c
commit
c940a57a38
1 changed files with 3 additions and 0 deletions
|
@ -894,6 +894,9 @@ u16 GenericCAO::getLightPosition(v3s16 *pos)
|
||||||
|
|
||||||
void GenericCAO::updateMarker()
|
void GenericCAO::updateMarker()
|
||||||
{
|
{
|
||||||
|
if (!m_client->getMinimap())
|
||||||
|
return;
|
||||||
|
|
||||||
if (!m_prop.show_on_minimap) {
|
if (!m_prop.show_on_minimap) {
|
||||||
if (m_marker)
|
if (m_marker)
|
||||||
m_client->getMinimap()->removeMarker(&m_marker);
|
m_client->getMinimap()->removeMarker(&m_marker);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue