diff options
Diffstat (limited to 'jeija/lightstone.lua')
-rw-r--r-- | jeija/lightstone.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/jeija/lightstone.lua b/jeija/lightstone.lua index a5d2583..08e79dd 100644 --- a/jeija/lightstone.lua +++ b/jeija/lightstone.lua @@ -3,6 +3,7 @@ function mesecon:lightstone_add(name, base_item, texture_off, texture_on) tile_images = {texture_off}, inventory_image = minetest.inventorycube(texture_off), material = minetest.digprop_stonelike(0.5), + description=name.." Lightstone", }) minetest.register_node("jeija:lightstone_" .. name .. "_on", { tile_images = {texture_on}, @@ -10,6 +11,7 @@ function mesecon:lightstone_add(name, base_item, texture_off, texture_on) material = minetest.digprop_stonelike(0.5), dug_item = "node jeija:lightstone_" .. name .. "_off 1", light_source = LIGHT_MAX-2, + description=name.." Lightstone", }) assert(loadstring('mesecon:register_on_signal_on(function(pos, node) \n \ if node.name == "jeija:lightstone_' .. name .. '_off" then \n \ |