mirror of
https://codeberg.org/tenplus1/farming.git
synced 2025-07-03 00:30:39 +02:00
fix _mcl_hardness values for crops and seeds
This commit is contained in:
@ -17,6 +17,7 @@ minetest.register_node("farming:cotton_wild", {
|
||||
groups = {
|
||||
handy = 1, snappy = 3, attached_node = 1, flammable = 4, compostability = 60
|
||||
},
|
||||
_mcl_hardness = farming.mcl_hardness,
|
||||
is_ground_content = false,
|
||||
drop = {
|
||||
items = {
|
||||
@ -42,6 +43,7 @@ minetest.register_node("farming:seed_cotton", {
|
||||
compostability = 48, seed = 1, snappy = 3, attached_node = 1,
|
||||
flammable = 4, growing = 1
|
||||
},
|
||||
_mcl_hardness = farming.mcl_hardness,
|
||||
is_ground_content = false,
|
||||
paramtype = "light",
|
||||
paramtype2 = "wallmounted",
|
||||
@ -120,6 +122,7 @@ local def = {
|
||||
handy = 1, snappy = 3, flammable = 4, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
_mcl_hardness = farming.mcl_hardness,
|
||||
is_ground_content = false,
|
||||
sounds = farming.sounds.node_sound_leaves_defaults()
|
||||
}
|
||||
|
Reference in New Issue
Block a user