diff options
author | Wuzzy <almikes@aol.com> | 2016-08-05 02:07:21 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-08-05 02:07:21 +0200 |
commit | a9a3dc83caef5923e7356865915a3c5dfbb04f10 (patch) | |
tree | d468203b814c65f3138c571b28dec14f510916f8 /init.lua | |
parent | 37a7175db35c8c66d80a797d4bb0c93c221fee12 (diff) |
Improve liquids_pointable
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -201,6 +201,9 @@ doc.new_category("nodes", { 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 @@ -524,7 +527,7 @@ doc.new_category("tools", { -- Global factoids if data.def.liquids_pointable == true then - formstring = formstring .. "This item will point to liquids rather than ignore them.\n" + formstring = formstring .. "This tool points to liquids.\n" end -- Show other “exposable” groups @@ -585,7 +588,7 @@ doc.new_category("craftitems", { -- Global factoids if data.def.liquids_pointable == true then - formstring = formstring .. "This item will point to liquids rather than ignore them.\n" + formstring = formstring .. "This item points to liquids.\n" end -- Show other “exposable” groups |