mcl group tweaks

This commit is contained in:
tenplus1 2023-11-25 16:51:34 +00:00
parent a0dd3db65f
commit 9247121b14
2 changed files with 3 additions and 3 deletions

View File

@ -183,8 +183,8 @@ minetest.register_node("farming:hemp_rope", {
inventory_image = "farming_hemp_rope.png", inventory_image = "farming_hemp_rope.png",
drawtype = "plantlike", drawtype = "plantlike",
groups = { groups = {
handy = 1, axey = 1, flammable = 2, choppy = 3, oddly_breakable_by_hand = 3, handy = 1, axey = 1, swordy = 1, flammable = 2, choppy = 3,
compostability = 55 oddly_breakable_by_hand = 3, compostability = 55
}, },
sounds = farming.sounds.node_sound_leaves_defaults(), sounds = farming.sounds.node_sound_leaves_defaults(),
selection_box = { selection_box = {

View File

@ -135,7 +135,7 @@ end
minetest.register_node("farming:sugar_cube", { minetest.register_node("farming:sugar_cube", {
description = S("Sugar Cube"), description = S("Sugar Cube"),
tiles = {"farming_sugar_cube.png"}, tiles = {"farming_sugar_cube.png"},
groups = {pickaxey = 1, crumbly = 2}, groups = {shovely = 1, handy = 1, crumbly = 2},
floodable = true, floodable = true,
sounds = farming.sounds.node_sound_gravel_defaults(), sounds = farming.sounds.node_sound_gravel_defaults(),
_mcl_hardness = 0.8, _mcl_hardness = 0.8,