summaryrefslogtreecommitdiff
path: root/jeija
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2012-02-05 10:14:31 +0100
committersfan5 <sfan5@live.de>2012-02-05 10:14:31 +0100
commite880d814dd3f104724141f41ec2194530edac7b8 (patch)
tree49c0b375c64caeaf41c4cd493580f200ecb978f7 /jeija
parent0d0271280fd5d702a4915b5d37a2d8e6d39ff579 (diff)
downloadmesecons-e880d814dd3f104724141f41ec2194530edac7b8.tar
mesecons-e880d814dd3f104724141f41ec2194530edac7b8.tar.gz
mesecons-e880d814dd3f104724141f41ec2194530edac7b8.tar.bz2
mesecons-e880d814dd3f104724141f41ec2194530edac7b8.tar.xz
mesecons-e880d814dd3f104724141f41ec2194530edac7b8.zip
Fixed Lightstone Drop
Diffstat (limited to 'jeija')
-rw-r--r--jeija/lightstone.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/jeija/lightstone.lua b/jeija/lightstone.lua
index 08e79dd..454eb4a 100644
--- a/jeija/lightstone.lua
+++ b/jeija/lightstone.lua
@@ -3,15 +3,15 @@ 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",
+ description=name.." Lightstone",
})
minetest.register_node("jeija:lightstone_" .. name .. "_on", {
tile_images = {texture_on},
inventory_image = minetest.inventorycube(texture_on),
material = minetest.digprop_stonelike(0.5),
- dug_item = "node jeija:lightstone_" .. name .. "_off 1",
+ drop = "jeija:lightstone_" .. name .. "_off 1",
light_source = LIGHT_MAX-2,
- description=name.." Lightstone",
+ description=name.." Lightstone",
})
assert(loadstring('mesecon:register_on_signal_on(function(pos, node) \n \
if node.name == "jeija:lightstone_' .. name .. '_off" then \n \