forked from VoxeLibre/VoxeLibre
Don't update sign entity if node is gone
This commit is contained in:
parent
3bee57e97d
commit
9d53398045
|
@ -148,6 +148,9 @@ end
|
|||
|
||||
local update_sign = function(pos, fields, sender)
|
||||
local meta = minetest.get_meta(pos)
|
||||
if not meta then
|
||||
return
|
||||
end
|
||||
local owner = meta:get_string("owner")
|
||||
local text = meta:get_string("text")
|
||||
if fields and sender:get_player_name() == owner or text == "" and fields then
|
||||
|
|
Loading…
Reference in New Issue