From bec3234d4d879fe42e1348063c788d13aa1551af Mon Sep 17 00:00:00 2001 From: Rune Albut Date: Tue, 1 May 2012 22:05:54 +0200 Subject: [PATCH] update --- init.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 947c709..db668fc 100644 --- a/init.lua +++ b/init.lua @@ -23,7 +23,9 @@ minetest.register_node("street:lamp", { --wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1}, --wall_side = {-0.5, -0.3, -0.1, -0.5+0.3, 0.3, 0.1}, }, - material = minetest.digprop_constanttime(0.0), + --material = minetest.digprop_constanttime(0.0), + groups = {choppy=2,dig_immediate=3,flammable=1}, + sounds = default.node_sound_defaults(), legacy_wallmounted = true, }) @@ -50,5 +52,7 @@ minetest.register_node("street:lamppost", { type = "fixed", fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7}, }, - material = minetest.digprop_woodlike(0.75), + --material = minetest.digprop_woodlike(0.75), + groups = {choppy=2,dig_immediate=3,flammable=1}, + sounds = default.node_sound_defaults(), })