Skip to content
Snippets Groups Projects
Commit 3a7cbfc5 authored by PilzAdam's avatar PilzAdam
Browse files

Merge pull request #34 from PilzAdam/selection_box

Add VanessaE's selection box for apples, saplings and papyrus
parents d317d7b8 2768d497
No related branches found
No related tags found
No related merge requests found
......@@ -888,6 +888,10 @@ minetest.register_node("default:papyrus", {
paramtype = "light",
is_ground_content = true,
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3}
},
groups = {snappy=3,flammable=2},
sounds = default.node_sound_leaves_defaults(),
})
......@@ -1528,6 +1532,10 @@ minetest.register_node("default:sapling", {
wield_image = "default_sapling.png",
paramtype = "light",
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
},
groups = {snappy=2,dig_immediate=3,flammable=2},
sounds = default.node_sound_defaults(),
})
......@@ -1541,6 +1549,10 @@ minetest.register_node("default:apple", {
paramtype = "light",
sunlight_propagates = true,
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2}
},
groups = {fleshy=3,dig_immediate=3,flammable=2},
on_use = minetest.item_eat(4),
sounds = default.node_sound_defaults(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment