@@ -1447,7 +1447,6 @@ minetest.register_node("default:chest", {
1447
1447
on_construct = function (pos )
1448
1448
local meta = minetest .get_meta (pos )
1449
1449
meta :set_string (" formspec" , chest_formspec )
1450
- meta :set_string (" infotext" , " Chest" )
1451
1450
local inv = meta :get_inventory ()
1452
1451
inv :set_size (" main" , 8 * 4 )
1453
1452
end ,
@@ -1498,7 +1497,6 @@ minetest.register_node("default:chest_locked", {
1498
1497
end ,
1499
1498
on_construct = function (pos )
1500
1499
local meta = minetest .get_meta (pos )
1501
- meta :set_string (" infotext" , " Locked Chest" )
1502
1500
meta :set_string (" owner" , " " )
1503
1501
local inv = meta :get_inventory ()
1504
1502
inv :set_size (" main" , 8 * 4 )
@@ -1636,7 +1634,6 @@ local function register_sign(material, desc, def)
1636
1634
-- local n = minetest.get_node(pos)
1637
1635
local meta = minetest .get_meta (pos )
1638
1636
meta :set_string (" formspec" , " field[text;;${text}]" )
1639
- meta :set_string (" infotext" , " \"\" " )
1640
1637
end ,
1641
1638
on_receive_fields = function (pos , formname , fields , sender )
1642
1639
-- print("Sign at "..minetest.pos_to_string(pos).." got "..dump(fields))
0 commit comments