Update nodes for compatibility with digging time groups.

This commit is contained in:
Anthony Zhang
2012-03-22 17:52:11 -04:00
parent 9ec0767762
commit 3018128b4b
18 changed files with 42 additions and 41 deletions

View File

@ -85,7 +85,7 @@ minetest.register_node("mesecons:mesecon_off", {
selection_box = {
type = "fixed",
},
material = minetest.digprop_constanttime(0.1),
groups = {dig_immediate=3},
description="Mesecons",
})
@ -98,7 +98,7 @@ minetest.register_node("mesecons:mesecon_on", {
selection_box = {
type = "fixed",
},
material = minetest.digprop_constanttime(0.1),
groups = {dig_immediate=3},
drop = '"mesecons:mesecon_off" 1',
light_source = LIGHT_MAX-11,
})