diff options
author | Wuzzy <almikes@aol.com> | 2016-08-28 18:52:38 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-08-28 18:52:38 +0200 |
commit | 5b680134d4e86dc1ee084f91f507fc0d4d2b3001 (patch) | |
tree | 87f2f4314c0d11b76298cd544b8ff11789d626b7 | |
parent | e192d268649b0ec98ec94780b1bd470a38e5f0e4 (diff) |
Fix buildable_to mess once again
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -352,7 +352,7 @@ doc.new_category("nodes", { end end if data.def.walkable == false then - if data.def.groups.attached_node == 1 or data.def.paramtype2 == "wallmounted" then + if data.def.buildable_to == false and (data.def.paramtype2 == "wallmounted" or data.def.groups.attached_node == 1) then formstring = formstring .. "This block will drop as an item when a falling block ends up inside it.\n" else formstring = formstring .. "This block is destroyed when a falling block ends up inside it.\n" |