mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-14 14:40:29 +01:00
make mycelia climbable
This commit is contained in:
parent
95578b06e1
commit
70996a5e4b
|
@ -31,9 +31,11 @@ minetest.register_node("df_primordial_items:giant_hypha_root", {
|
||||||
connect_sides = { "top", "bottom", "front", "left", "back", "right" },
|
connect_sides = { "top", "bottom", "front", "left", "back", "right" },
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
node_box = get_node_box(0.1875, 0.25),
|
node_box = get_node_box(0.1875, 0.25),
|
||||||
|
collision_box = get_node_box(0.125, 0.1875),
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
light_source = 2,
|
light_source = 2,
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
|
climbable = true,
|
||||||
groups = {oddly_breakable_by_hand = 1, choppy = 2, hypha = 1},
|
groups = {oddly_breakable_by_hand = 1, choppy = 2, hypha = 1},
|
||||||
sounds = df_trees.node_sound_tree_soft_fungus_defaults(),
|
sounds = df_trees.node_sound_tree_soft_fungus_defaults(),
|
||||||
drop = {
|
drop = {
|
||||||
|
@ -60,9 +62,11 @@ minetest.register_node("df_primordial_items:giant_hypha", {
|
||||||
connect_sides = { "top", "bottom", "front", "left", "back", "right" },
|
connect_sides = { "top", "bottom", "front", "left", "back", "right" },
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
node_box = get_node_box(0.1875, 0.25),
|
node_box = get_node_box(0.1875, 0.25),
|
||||||
|
collision_box = get_node_box(0.125, 0.1875),
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
light_source = 2,
|
light_source = 2,
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
|
climbable = true,
|
||||||
groups = {oddly_breakable_by_hand = 1, choppy = 2, hypha = 1},
|
groups = {oddly_breakable_by_hand = 1, choppy = 2, hypha = 1},
|
||||||
sounds = df_trees.node_sound_tree_soft_fungus_defaults(),
|
sounds = df_trees.node_sound_tree_soft_fungus_defaults(),
|
||||||
drop = {
|
drop = {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user