mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2025-07-16 20:50:22 +02:00
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:
@ -629,7 +629,8 @@ minetest.register_node(":homedecor:tatami_mat", {
|
||||
description = S("Japanese tatami"),
|
||||
drawtype = "nodebox",
|
||||
paramtype = "light",
|
||||
groups = {snappy=3},
|
||||
groups = {snappy=3, axey=5},
|
||||
_mcl_hardness=1.6,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
@ -1028,7 +1029,8 @@ minetest.register_node(":homedecor:japanese_wall_top", {
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
groups = {snappy=3},
|
||||
groups = {snappy=3, axey=5},
|
||||
_mcl_hardness=1.6,
|
||||
selection_box = jp_cbox,
|
||||
collision_box = jp_cbox,
|
||||
_sound_def = {
|
||||
@ -1046,7 +1048,8 @@ minetest.register_node(":homedecor:japanese_wall_middle", {
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
groups = {snappy=3},
|
||||
groups = {snappy=3, axey=5},
|
||||
_mcl_hardness=1.6,
|
||||
selection_box = jp_cbox,
|
||||
collision_box = jp_cbox,
|
||||
_sound_def = {
|
||||
@ -1064,7 +1067,8 @@ minetest.register_node(":homedecor:japanese_wall_bottom", {
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
groups = {snappy=3},
|
||||
groups = {snappy=3, axey=5},
|
||||
_mcl_hardness=1.6,
|
||||
selection_box = jp_cbox,
|
||||
collision_box = jp_cbox,
|
||||
_sound_def = {
|
||||
|
Reference in New Issue
Block a user