forked from VoxeLibre/VoxeLibre
Fix dig times of carrots and potatoes
This commit is contained in:
parent
83433b0786
commit
5ace10882e
|
@ -10,7 +10,7 @@ minetest.register_node("mcl_farming:carrot_1", {
|
||||||
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
groups = {snappy=3, not_in_creative_inventory=1,dig_by_water=1},
|
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
|
||||||
sounds = mcl_core.node_sound_leaves_defaults(),
|
sounds = mcl_core.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ minetest.register_node("mcl_farming:carrot_2", {
|
||||||
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
groups = {snappy=3, not_in_creative_inventory=1,dig_by_water=1},
|
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
|
||||||
sounds = mcl_core.node_sound_leaves_defaults(),
|
sounds = mcl_core.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ minetest.register_node("mcl_farming:carrot_3", {
|
||||||
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
groups = {snappy=3, not_in_creative_inventory=1,dig_by_water=1},
|
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
|
||||||
sounds = mcl_core.node_sound_leaves_defaults(),
|
sounds = mcl_core.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ minetest.register_node("mcl_farming:carrot", {
|
||||||
{ items = {'mcl_farming:carrot_item 1'} },
|
{ items = {'mcl_farming:carrot_item 1'} },
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
groups = {snappy=3, not_in_creative_inventory=1,dig_by_water=1},
|
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
|
||||||
sounds = mcl_core.node_sound_leaves_defaults(),
|
sounds = mcl_core.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ minetest.register_node("mcl_farming:potato_1", {
|
||||||
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
groups = {snappy=3, not_in_creative_inventory=1,dig_by_water=1},
|
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
|
||||||
sounds = mcl_core.node_sound_leaves_defaults(),
|
sounds = mcl_core.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ minetest.register_node("mcl_farming:potato_2", {
|
||||||
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
groups = {snappy=3, not_in_creative_inventory=1,dig_by_water=1},
|
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
|
||||||
sounds = mcl_core.node_sound_leaves_defaults(),
|
sounds = mcl_core.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ minetest.register_node("mcl_farming:potato", {
|
||||||
{ items = {'mcl_farming:potato_item 4'}, rarity = 5 }
|
{ items = {'mcl_farming:potato_item 4'}, rarity = 5 }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
groups = {snappy=3, not_in_creative_inventory=1,dig_by_water=1},
|
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
|
||||||
sounds = mcl_core.node_sound_leaves_defaults(),
|
sounds = mcl_core.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue