diff options
author | root <root@linux-forks.de> | 2018-09-14 16:57:17 +0200 |
---|---|---|
committer | root <root@linux-forks.de> | 2018-09-14 16:57:17 +0200 |
commit | 76f723270ef58c236a6fd78a0c6aef53997582f7 (patch) | |
tree | 2122d0d093608f994f1f6c5ad444a342959dd18a | |
parent | 1bf8cf53732b59835f7b121447386f06259fdc30 (diff) | |
parent | d3397563ec29b193aa2bfd720da1a4aba34304d3 (diff) |
Merge branch 'master' of https://github.com/minetest-mods/digtron
-rw-r--r-- | class_layout.lua | 2 | ||||
-rw-r--r-- | nodes/node_crate.lua | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/class_layout.lua b/class_layout.lua index 14c116b..541fd35 100644 --- a/class_layout.lua +++ b/class_layout.lua @@ -458,7 +458,7 @@ function DigtronLayout.deserialize(layout_string) if not layout_string or layout_string == "" then return nil end - deserialized_layout = minetest.deserialize(layout_string) + local deserialized_layout = minetest.deserialize(layout_string) self.all = deserialized_layout.all self.controller = deserialized_layout.controller diff --git a/nodes/node_crate.lua b/nodes/node_crate.lua index 4073993..ae3bffa 100644 --- a/nodes/node_crate.lua +++ b/nodes/node_crate.lua @@ -182,6 +182,7 @@ local loaded_on_recieve = function(pos, fields, sender, protected) meta:set_string("title", minetest.formspec_escape(fields.title)) end local title = meta:get_string("title") + local infotext if protected then infotext = title .. "\n" .. S("Owned by @1", sender:get_player_name()) |