diff options
author | Wuzzy <almikes@aol.com> | 2016-08-05 02:10:22 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-08-05 02:10:22 +0200 |
commit | 17b3d87e37a950c8713e09cee0d622a512802751 (patch) | |
tree | f69c12d9369d584bef2e6e8ebd73c63d6b16178f | |
parent | a9a3dc83caef5923e7356865915a3c5dfbb04f10 (diff) |
Move node's liquids_pointable up
-rw-r--r-- | init.lua | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -197,13 +197,13 @@ doc.new_category("nodes", { formstring = formstring .. "Renewable liquid: "..yesno(renew).. "\n" end formstring = formstring .. "Pointable: "..yesno(data.def.pointable).. "\n" + if data.def.liquids_pointable == true then + formstring = formstring .. "When you wield this block, you can point to liquids.\n" + end formstring = formstring .. "\n" -- Global factoids - if data.def.liquids_pointable == true then - formstring = formstring .. "When you wield this block, you can point to liquids.\n" - end if data.def.floodable == true then formstring = formstring .. "Liquids can flow into this block and destroy it.\n" end |