summaryrefslogtreecommitdiff
path: root/mesecons_torch
diff options
context:
space:
mode:
authorJeija <norrepli@gmail.com>2012-08-11 23:39:28 +0200
committerJeija <norrepli@gmail.com>2012-08-11 23:39:28 +0200
commit1f6e1fa7abba58508a6274e9d0fa6bdfb6632dc2 (patch)
treefe7d9b75f5aba7540bf2aaaf6569020d2ac26230 /mesecons_torch
parent6b1941a38011c06de22a800c9fdffd278b6610e4 (diff)
downloadmesecons-1f6e1fa7abba58508a6274e9d0fa6bdfb6632dc2.tar
mesecons-1f6e1fa7abba58508a6274e9d0fa6bdfb6632dc2.tar.gz
mesecons-1f6e1fa7abba58508a6274e9d0fa6bdfb6632dc2.tar.bz2
mesecons-1f6e1fa7abba58508a6274e9d0fa6bdfb6632dc2.tar.xz
mesecons-1f6e1fa7abba58508a6274e9d0fa6bdfb6632dc2.zip
Mesecons only connect to blocks with group mesecon > 1
Diffstat (limited to 'mesecons_torch')
-rw-r--r--mesecons_torch/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesecons_torch/init.lua b/mesecons_torch/init.lua
index c962f14..5512e89 100644
--- a/mesecons_torch/init.lua
+++ b/mesecons_torch/init.lua
@@ -22,7 +22,7 @@ minetest.register_node("mesecons_torch:mesecon_torch_off", {
wall_side = {-0.5, -0.1, -0.1, -0.5+0.6, 0.1, 0.1},
},
legacy_wallmounted = true,
- groups = {dig_immediate=3,not_in_creative_inventory=1, mesecon = 1},
+ groups = {dig_immediate=3,not_in_creative_inventory=1, mesecon = 2},
drop = '"mesecons_torch:mesecon_torch_on" 1',
description="Mesecon Torch",
})
@@ -43,7 +43,7 @@ minetest.register_node("mesecons_torch:mesecon_torch_on", {
wall_side = {-0.5, -0.1, -0.1, -0.5+0.6, 0.1, 0.1},
},
legacy_wallmounted = true,
- groups = {dig_immediate=3, mesecon = 1},
+ groups = {dig_immediate=3, mesecon = 2},
light_source = LIGHT_MAX-5,
description="Mesecon Torch",
after_place_node = function(pos)