diff options
author | Jeija <norrepli@gmail.com> | 2012-08-12 10:57:00 +0200 |
---|---|---|
committer | Jeija <norrepli@gmail.com> | 2012-08-12 10:57:00 +0200 |
commit | 9829abc74dcc5ce886dfd6bbb01315e874fe917e (patch) | |
tree | 28841e2f3b5dbc5cbc2bc87a1623aef63ebf9553 /mesecons_microcontroller | |
parent | d72c0e6bdde1d6e9400c641a80cbc8b7b654a96b (diff) |
HUGE speed improvement
Diffstat (limited to 'mesecons_microcontroller')
-rw-r--r-- | mesecons_microcontroller/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesecons_microcontroller/init.lua b/mesecons_microcontroller/init.lua index 1b0f5ee..d76c85f 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 = 2} + groups = {dig_immediate=2, not_in_creative_inventory=1, mesecon_effector_on = 1, mesecon_effector_off = 1, mesecon = 2} else - groups = {dig_immediate=2, mesecon = 2} + groups = {dig_immediate=2, mesecon_effector_on = 1, mesecon_effector_off = 1, mesecon = 2} end minetest.register_node(nodename, { description = "Microcontroller", |