add mcl blast resistance and hardness to everything. Also an alternate name for Nethercap in MCL, since "nether" has another meaning there.

This commit is contained in:
FaceDeer
2022-08-07 00:33:22 -06:00
parent c297978d50
commit 3df518fc16
58 changed files with 499 additions and 54 deletions

View File

@ -165,6 +165,8 @@ minetest.register_node("big_webs:webbing", {
minetest.get_node_timer(web_pos):stop() -- no need to recheck
end
end,
_mcl_blast_resistance = 1.0,
_mcl_hardness = 0.5,
})
minetest.register_node("big_webs:web_egg", {
@ -193,4 +195,6 @@ minetest.register_node("big_webs:web_egg", {
minetest.set_node(pos, {name="air"})
generate_web(pos)
end,
_mcl_blast_resistance = 1.0,
_mcl_hardness = 0.5,
})