Add VanessaE's selection box for apples, saplings and papyrus 34/head
authorPilzAdam <adam-k@outlook.com>
Sun, 11 Nov 2012 17:17:09 +0000 (18:17 +0100)
committerPilzAdam <adam-k@outlook.com>
Sun, 11 Nov 2012 17:17:09 +0000 (18:17 +0100)
mods/default/init.lua

index 2ee1dd9113f143ce03685a653012754d2b6d98af..fd525774010d360dc3ae16368524c98a6e628e99 100644 (file)
@@ -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(),