Fix crashing on HUD removal
This commit is contained in:
parent
1424222a69
commit
0698673c28
@ -138,9 +138,15 @@ minetest.register_globalstep (function(dtime)
|
|||||||
player:set_physics_override({
|
player:set_physics_override({
|
||||||
speed = 1,
|
speed = 1,
|
||||||
})
|
})
|
||||||
player:hud_remove(p.hud.ui)
|
if p.hud.ui then
|
||||||
player:hud_remove(p.hud.icon)
|
player:hud_remove(p.hud.ui)
|
||||||
player:hud_remove(p.hud.time)
|
end
|
||||||
|
if p.hud.icon then
|
||||||
|
player:hud_remove(p.hud.icon)
|
||||||
|
end
|
||||||
|
if p.hud.time then
|
||||||
|
player:hud_remove(p.hud.time)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
Loading…
Reference in New Issue
Block a user