Set infotext for node breakers

As node breakers now have a form, they should also have infotext to draw
attention to it, as do most form-containing nodes.
This commit is contained in:
Zefram 2014-07-06 23:14:51 +01:00 committed by Vanessa Ezekowitz
parent 6432bf721d
commit 2b5aeda9d1
1 changed files with 2 additions and 0 deletions

View File

@ -254,6 +254,7 @@ minetest.register_node("pipeworks:nodebreaker_off", {
"label[0,0;Node breaker]"..
"list[current_name;pick;3.5,0;1,1;]"..
"list[current_player;main;0,2;8,4;]")
meta:set_string("infotext", "Node Breaker")
end,
after_place_node = function (pos, placer)
pipeworks.scan_for_tube_objects(pos, placer)
@ -354,6 +355,7 @@ minetest.register_node("pipeworks:nodebreaker_on", {
"list[current_name;pick;3.5,0;1,1;]"..
"list[current_player;main;0,2;8,4;]")
--inv:set_stack("pick", 1, ItemStack("default:pick_mese"))
meta:set_string("infotext", "Node Breaker")
end,
after_place_node = function (pos, placer)
pipeworks.scan_for_tube_objects(pos, placer)