Add blast resistance to a ton of blocks

This commit is contained in:
Wuzzy 2017-02-22 16:03:59 +01:00
parent 6be056c0e7
commit 0aeb109c64
25 changed files with 99 additions and 8 deletions

View file

@ -46,9 +46,7 @@ minetest.register_node("mcl_fire:fire", {
on_construct = function(pos)
minetest.get_node_timer(pos):start(math.random(30, 60))
end,
on_blast = function() -- Unaffected by explosions
end,
_mcl_blast_resistance = 0,
})
minetest.register_node("mcl_fire:eternal_fire", {
@ -76,9 +74,7 @@ minetest.register_node("mcl_fire:eternal_fire", {
groups = {igniter = 1, dig_immediate = 3, not_in_creative_inventory = 1},
sounds = {},
drop = "",
on_blast = function() -- Unaffected by explosions
end,
_mcl_blast_resistance = 0,
})
--