diff options
author | Anthony Zhang <azhang9@gmail.com> | 2012-02-10 16:05:55 -0500 |
---|---|---|
committer | Anthony Zhang <azhang9@gmail.com> | 2012-02-10 16:05:55 -0500 |
commit | fd81543d2bc75a417f84fd08b2cb9fcd66866581 (patch) | |
tree | 1c94175bfaab112638b0b814256348f0ccb63365 /jeija/torches.lua | |
parent | 1ac2bc910f11f8ae610bf32f8fc6bc73a5bf5917 (diff) | |
parent | f4fa9dec32d7debe1a8aa058f2b0a413193a43aa (diff) |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'jeija/torches.lua')
-rw-r--r-- | jeija/torches.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jeija/torches.lua b/jeija/torches.lua index 9aac92c..28e9985 100644 --- a/jeija/torches.lua +++ b/jeija/torches.lua @@ -12,7 +12,7 @@ minetest.register_node("jeija:mesecon_torch_off", { drawtype = "torchlike", tile_images = {"jeija_torches_off.png", "jeija_torches_off_ceiling.png", "jeija_torches_off_side.png"}, inventory_image = "jeija_torches_off.png", - sunlight_propagates = true, + paramtype = "light", walkable = false, paramtype2 = "wallmounted", legacy_wallmounted = true, @@ -25,6 +25,7 @@ minetest.register_node("jeija:mesecon_torch_on", { drawtype = "torchlike", tile_images = {"jeija_torches_on.png", "jeija_torches_on_ceiling.png", "jeija_torches_on_side.png"}, inventory_image = "jeija_torches_on.png", + wield_image = "jeija_torches_on.png", paramtype = "light", sunlight_propagates = true, walkable = false, |