Fix prismarine bricks and dark variant blast res.

Should be 6 like regular prismarine
This commit is contained in:
seventeenthShulker 2023-09-17 13:49:00 +02:00 committed by the-real-herowl
parent e43a8e267d
commit e2ed1ab4a6
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ minetest.register_node("mcl_ocean:prismarine_brick", {
tiles = {"mcl_ocean_prismarine_bricks.png"},
groups = {pickaxey=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 1.5,--ffffixme
_mcl_blast_resistance = 6,
_mcl_hardness = 1.5,
})
@ -64,7 +64,7 @@ minetest.register_node("mcl_ocean:prismarine_dark", {
tiles = {"mcl_ocean_prismarine_dark.png"},
groups = {pickaxey=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 1.5,--fixmetoo
_mcl_blast_resistance = 6,
_mcl_hardness = 1.5,
})