aboutsummaryrefslogtreecommitdiff
path: root/games/devtest/mods/stairs/init.lua
diff options
context:
space:
mode:
authorWuzzy <Wuzzy@disroot.org>2022-10-09 14:05:22 +0200
committerGitHub <noreply@github.com>2022-10-09 08:05:22 -0400
commitc1c68775b25314b566a2aae9a304d1b470f5794d (patch)
tree127bdadf77939c194d1ec01696a9a0440f769a7b /games/devtest/mods/stairs/init.lua
parent804a31818907e737a1ec727580d5822532ff3e6b (diff)
downloadminetest-c1c68775b25314b566a2aae9a304d1b470f5794d.tar.xz
DevTest: Explain purpose of most items in tooltips (#12833)
Diffstat (limited to 'games/devtest/mods/stairs/init.lua')
-rw-r--r--games/devtest/mods/stairs/init.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/games/devtest/mods/stairs/init.lua b/games/devtest/mods/stairs/init.lua
index 2701cabab..043cf827c 100644
--- a/games/devtest/mods/stairs/init.lua
+++ b/games/devtest/mods/stairs/init.lua
@@ -3,7 +3,8 @@ stairs = {}
-- Node will be called stairs:stair_<subname>
function stairs.register_stair(subname, recipeitem, groups, images, description)
minetest.register_node(":stairs:stair_" .. subname, {
- description = description,
+ description = description.."\n"..
+ "param2 = facedir rotation (0..23)",
drawtype = "nodebox",
tiles = images,
paramtype = "light",