diff options
Diffstat (limited to 'helptexts.lua')
-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, |