forked from Mineclonia/Mineclonia
Infested blocks now break instantly
This commit is contained in:
parent
2c9b686885
commit
0290511578
|
@ -20,13 +20,13 @@ local register_block = function(subname, description, tiles, is_ground_content)
|
||||||
description = description,
|
description = description,
|
||||||
tiles = tiles,
|
tiles = tiles,
|
||||||
is_ground_content = is_ground_content,
|
is_ground_content = is_ground_content,
|
||||||
groups = {handy = 1, spawns_silverfish = 1, deco_block = 1},
|
groups = {dig_immediate = 3, spawns_silverfish = 1, deco_block = 1},
|
||||||
drop = '',
|
drop = '',
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
sounds = mcl_sounds.node_sound_stone_defaults(),
|
sounds = mcl_sounds.node_sound_stone_defaults(),
|
||||||
after_dig_node = spawn_silverfish,
|
after_dig_node = spawn_silverfish,
|
||||||
_doc_items_longdesc = S("An infested block is a block from which a silverfish will pop out when it is broken. It looks identical to its normal counterpart."),
|
_doc_items_longdesc = S("An infested block is a block from which a silverfish will pop out when it is broken. It looks identical to its normal counterpart."),
|
||||||
_mcl_hardness = 0.75,
|
_mcl_hardness = 0,
|
||||||
_mcl_blast_resistance = 3.75,
|
_mcl_blast_resistance = 3.75,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue