diff options
author | Wuzzy <almikes@aol.com> | 2017-02-11 02:34:11 +0100 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2017-02-11 02:34:11 +0100 |
commit | ebfb6b6f72116ad27419d1de96a71abf3dafaeca (patch) | |
tree | 726e2cfb42ea8fe4175ec32b31952f7825615f22 | |
parent | a9383c9a90db313730b4d66547b9f1de08e23c44 (diff) |
Add rotation hint for tree nodes and cactus
-rw-r--r-- | helptexts.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/helptexts.lua b/helptexts.lua index e084df5..11dd653 100644 --- a/helptexts.lua +++ b/helptexts.lua @@ -61,6 +61,7 @@ local dyedesc = S("Dyes are primarily used for crafting other items, especially local wooldesc = S("Wool is a soft decorative block which comes in different colors. Walking on wool is completely silent.") + local lavaheight -- CHECKME: Height at which lava spawns if v6 then @@ -74,6 +75,7 @@ local buildnode = doc.sub.items.temp.build local craftitemdesc = doc.sub.items.temp.craftitem local eat = doc.sub.items.temp.eat local eat_bad = doc.sub.items.temp.eat_bad +local placerotateuse = doc.sub.items.temp.rotate_node local tnt_radius = tonumber(minetest.setting_get("tnt_radius")) -- CHECKME: Default TNT radius @@ -455,6 +457,13 @@ local export_usagehelp = { ["doors:gate_acacia_wood_closed"] = fencegateuse, ["doors:gate_pine_wood_closed"] = fencegateuse, ["doors:gate_aspen_wood_closed"] = fencegateuse, + + ["default:tree"] = placerotateuse, + ["default:jungletree"] = placerotateuse, + ["default:pine_tree"] = placerotateuse, + ["default:aspen_tree"] = placerotateuse, + ["default:acacia_tree"] = placerotateuse, + ["default:cactus"] = placerotateuse, ["flowers:mushroom_brown"] = eat, ["flowers:mushroom_red"] = eat_bad, |