From 1f6e1fa7abba58508a6274e9d0fa6bdfb6632dc2 Mon Sep 17 00:00:00 2001 From: Jeija Date: Sat, 11 Aug 2012 23:39:28 +0200 Subject: Mesecons only connect to blocks with group mesecon > 1 --- mesecons_microcontroller/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesecons_microcontroller') diff --git a/mesecons_microcontroller/init.lua b/mesecons_microcontroller/init.lua index ea72bdd..88f7905 100644 --- a/mesecons_microcontroller/init.lua +++ b/mesecons_microcontroller/init.lua @@ -6,9 +6,9 @@ for c = 0, 1 do for d = 0, 1 do local nodename = "mesecons_microcontroller:microcontroller"..tostring(d)..tostring(c)..tostring(b)..tostring(a) if tostring(d)..tostring(c)..tostring(b)..tostring(a) ~= "0000" then - groups = {dig_immediate=2, not_in_creative_inventory=1, mesecon = 1} + groups = {dig_immediate=2, not_in_creative_inventory=1, mesecon = 2} else - groups = {dig_immediate=2, mesecon = 1} + groups = {dig_immediate=2, mesecon = 2} end minetest.register_node(nodename, { description = "Microcontroller", -- cgit v1.2.3