Merge pull request #32 from Jat15/patch-unknown

Fix crash if sign is "unknown block"
This commit is contained in:
Vanessa Dannenberg 2018-05-24 23:46:32 -04:00 committed by GitHub
commit a2f7f62bf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -950,7 +950,7 @@ signs_text_on_activate = function(self)
local meta = minetest.get_meta(pos)
local text = meta:get_string("text")
local new = (meta:get_int("__signslib_new_format") ~= 0)
if text then
if text and minetest.registered_nodes[minetest.get_node(pos).name] then
text = trim_input(text)
set_obj_text(self.object, text, new, pos)
end