forked from VoxeLibre/VoxeLibre
Merge pull request 'Mud fixes' (#2413) from TheRandomLegoBrick/MineClone2:mud_fixes into master
Reviewed-on: MineClone2/MineClone2#2413 Reviewed-by: cora <cora@noreply.git.minetest.land>
This commit is contained in:
commit
489db73dca
|
@ -11,13 +11,13 @@ minetest.register_node("mcl_mud:mud", {
|
||||||
dug = {name="mud_place_dug", gain=1},
|
dug = {name="mud_place_dug", gain=1},
|
||||||
place = {name="mud_place_dug", gain=1},
|
place = {name="mud_place_dug", gain=1},
|
||||||
},
|
},
|
||||||
groups = {handy=1,shovely=1, enderman_takable=1, building_block=1},
|
groups = {handy=1, shovely=1, enderman_takable=1, grass_block=1, soil_sugarcane=1, building_block=1},
|
||||||
_mcl_blast_resistance = 0.5,
|
_mcl_blast_resistance = 0.5,
|
||||||
_mcl_hardness = 0.5,
|
_mcl_hardness = 0.5,
|
||||||
collision_box = {
|
collision_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {
|
fixed = {
|
||||||
{-8 / 16, -8 / 16, -8 / 16, 8 / 16, 7 / 16, 8 / 16},
|
{-8 / 16, -8 / 16, -8 / 16, 8 / 16, 6 / 16, 8 / 16},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue