fix all or edge cases for https://github.com/mt-mods/homedecor_modpack/issues/49 not caught by the last commit

This commit is contained in:
unknown
2022-11-30 17:48:28 -05:00
parent 0384943a0a
commit 55bbd478d9
17 changed files with 111 additions and 49 deletions

View File

@ -19,7 +19,8 @@ minetest.register_node(":lrfurn:armchair", {
paramtype2 = "colorwallmounted",
palette = "unifieddyes_palette_colorwallmounted.png",
inventory_image = "lrfurn_armchair_inv.png",
groups = {snappy=3, ud_param2_colorable = 1, dig_tree=2},
groups = {snappy=3, ud_param2_colorable = 1, dig_tree=2, axey=5},
_mcl_hardness=1.6,
_sound_def = {
key = "node_sound_wood_defaults",
},

View File

@ -18,7 +18,8 @@ minetest.register_node(":lrfurn:longsofa", {
palette = "unifieddyes_palette_colorwallmounted.png",
inventory_image = "lrfurn_longsofa_inv.png",
wield_scale = { x = 0.6, y = 0.6, z = 0.6 },
groups = {snappy=3, ud_param2_colorable = 1, dig_tree=2},
groups = {snappy=3, ud_param2_colorable = 1, dig_tree=2, axey=5},
_mcl_hardness=1.6,
_sound_def = {
key = "node_sound_wood_defaults",
},

View File

@ -18,7 +18,8 @@ minetest.register_node(":lrfurn:sofa", {
palette = "unifieddyes_palette_colorwallmounted.png",
inventory_image = "lrfurn_sofa_inv.png",
wield_scale = { x = 0.6, y = 0.6, z = 0.6 },
groups = {snappy=3, ud_param2_colorable = 1, dig_tree=2},
groups = {snappy=3, ud_param2_colorable = 1, dig_tree=2, axey=5},
_mcl_hardness=1.6,
_sound_def = {
key = "node_sound_wood_defaults",
},