Random node metadata things

This commit is contained in:
Perttu Ahola
2012-06-01 19:03:09 +03:00
parent 29f03756bd
commit f3ec1452cd
3 changed files with 6 additions and 7 deletions

View File

@@ -1112,6 +1112,12 @@ minetest.register_node("default:sign_wall", {
groups = {choppy=2,dig_immediate=2},
legacy_wallmounted = true,
sounds = default.node_sound_defaults(),
on_construct = function(pos)
--local n = minetest.env:get_node(pos)
local meta = minetest.env:get_meta(pos)
meta:set_string("formspec", "hack:sign_text_input")
meta:set_string("infotext", "\"${text}\"")
end,
})
minetest.register_node("default:chest", {