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

@ -55,6 +55,8 @@ minetest.register_node("mine_gas:gas_seep", {
drop = df_dependencies.node_name_coal_lump,
sounds = df_dependencies.sound_stone(),
is_ground_content = true,
_mcl_blast_resistance = 5,
_mcl_hardness = 3,
})
minetest.register_on_dignode(function(pos, oldnode, digger)

View File

@ -41,6 +41,8 @@ minetest.register_node("mine_gas:gas_wisp", {
drop = {},
sunlight_propagates = true,
on_blast = function() end, -- unaffected by explosions
_mcl_blast_resistance = 3600000,
_mcl_hardness = 0,
})
minetest.register_abm({