diff options
author | Wuzzy <almikes@aol.com> | 2016-11-03 03:23:00 +0100 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-11-03 03:23:00 +0100 |
commit | 79e58cfbfbec200159f2e49e489be80bae5774c9 (patch) | |
tree | 24ec35a7d9c478d53726a75c074b46cd42b9a0dc | |
parent | 84b045e86fabc871cadd9b236c27c3f99f4e4972 (diff) |
Fix globals problem
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -403,7 +403,7 @@ doc.new_category("nodes", { end end if data.def.walkable == false then - if data.def.buildable_to == false and drop ~= "" then + if data.def.buildable_to == false and data.def.drop ~= "" then datastring = datastring .. S("This block will drop as an item when a falling block ends up inside it.").."\n" else datastring = datastring .. S("This block is destroyed when a falling block ends up inside it.").."\n" |