Remove sign owner

This commit is contained in:
Wuzzy 2017-07-25 01:35:29 +02:00
parent b57ffe9d12
commit 90abfb0347
1 changed files with 1 additions and 3 deletions

View File

@ -151,12 +151,10 @@ local update_sign = function(pos, fields, sender)
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.text)) then
if fields and (text == "" and fields.text) then
meta:set_string("text", fields.text)
text = fields.text
meta:set_string("owner", sender:get_player_name() or "")
end
if text == nil then
text = ""