Mud fixes #2413

Merged
cora merged 1 commits from TheRandomLegoBrick/MineClone2:mud_fixes into master 2022-07-11 22:31:03 +02:00
1 changed files with 2 additions and 2 deletions

View File

@ -11,13 +11,13 @@ minetest.register_node("mcl_mud:mud", {
dug = {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_hardness = 0.5,
collision_box = {
type = "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},
},
},
})