Don't update sign entity if node is gone

This commit is contained in:
Wuzzy 2017-07-25 01:17:30 +02:00
parent 3bee57e97d
commit 9d53398045
1 changed files with 3 additions and 0 deletions

View File

@ -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