Prismarine, sealantern, sponge, sign: Hardness set

This commit is contained in:
Wuzzy 2017-02-27 01:45:25 +01:00
parent ed1c5b78a2
commit 0cb1a39c33
3 changed files with 17 additions and 7 deletions

View file

@ -137,7 +137,7 @@ local signs_yard = {
{delta = {x = 0.05, y = 0, z = 0}, yaw = math.pi / 2},
}
local sign_groups = {choppy=2, flammable=1, deco_block=1}
local sign_groups = {handy=1,axey=1, flammable=1, deco_block=1}
local construct_sign = function(pos)
local meta = minetest.get_meta(pos)
@ -265,6 +265,8 @@ minetest.register_node("signs:sign_wall", {
on_punch = function(pos, node, puncher)
update_sign(pos)
end,
_mcl_hardness = 1,
_mcl_blast_resistance = 5,
})
minetest.register_node("signs:sign_yard", {
@ -297,6 +299,8 @@ minetest.register_node("signs:sign_yard", {
on_punch = function(pos, node, puncher)
update_sign(pos)
end,
_mcl_hardness = 1,
_mcl_blast_resistance = 5,
})
minetest.register_entity("signs:text", {