diff options
author | tenplus1 <kinsellaja@yahoo.com> | 2015-06-24 10:00:12 +0100 |
---|---|---|
committer | tenplus1 <kinsellaja@yahoo.com> | 2015-06-24 10:00:12 +0100 |
commit | 2bc7406c9a2112eba39e91c304dab74699093c4d (patch) | |
tree | 10620b71f6bdb65c46832da0743faf7be3500989 /wood.lua | |
parent | d22a051434d1b92d8fbb4fa8027ef29a567312eb (diff) |
Adjusted ground content flags
Diffstat (limited to 'wood.lua')
-rw-r--r-- | wood.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -10,6 +10,7 @@ minetest.register_node("ethereal:acacia_trunk", { -- Acacia Trunk (thanks to V minetest.register_node("ethereal:acacia_wood", { -- Acacia Wood description = "Acacia Wood", tiles = {"moretrees_acacia_wood.png"}, + is_ground_content = false, groups = {wood=1,choppy=2,oddly_breakable_by_hand=1,flammable=3}, sounds = default.node_sound_wood_defaults(), }) @@ -30,6 +31,7 @@ minetest.register_node("ethereal:willow_trunk", { -- Willow Trunk minetest.register_node("ethereal:willow_wood", { -- Willow Wood description = "Willow Wood", tiles = {"willow_wood.png"}, + is_ground_content = false, groups = {wood=1,choppy=2,oddly_breakable_by_hand=1,flammable=3}, sounds = default.node_sound_wood_defaults(), }) @@ -50,6 +52,7 @@ minetest.register_node("ethereal:redwood_trunk", { -- Redwood Trunk minetest.register_node("ethereal:redwood_wood", { -- Redwood Wood description = "Redwood Wood", tiles = {"redwood_wood.png"}, + is_ground_content = false, groups = {wood=1,choppy=2,oddly_breakable_by_hand=1,flammable=3}, sounds = default.node_sound_wood_defaults(), }) @@ -70,6 +73,7 @@ minetest.register_node("ethereal:frost_tree", { -- Frost Trunk minetest.register_node("ethereal:frost_wood", { -- Frost Wood description = "Frost Wood", tiles = {"frost_wood.png"}, + is_ground_content = false, groups = {wood=1,choppy=2,oddly_breakable_by_hand=1,put_out_fire=1}, sounds = default.node_sound_wood_defaults(), }) @@ -90,6 +94,7 @@ minetest.register_node("ethereal:yellow_trunk", { -- Healing Trunk minetest.register_node("ethereal:yellow_wood", { -- Healing Wood description = "Healing Tree Wood", tiles = {"yellow_wood.png"}, + is_ground_content = false, groups = {wood=1,choppy=2,oddly_breakable_by_hand=1,put_out_fire=1}, sounds = default.node_sound_wood_defaults(), }) @@ -110,6 +115,7 @@ minetest.register_node("ethereal:palm_trunk", { -- Palm Trunk minetest.register_node("ethereal:palm_wood", { -- Palm Wood description = "Palm Wood", tiles = {"moretrees_palm_wood.png"}, + is_ground_content = false, groups = {wood=1,choppy=2,oddly_breakable_by_hand=1,flammable=3}, sounds = default.node_sound_wood_defaults(), }) @@ -130,6 +136,7 @@ minetest.register_node("ethereal:banana_trunk", { -- Banana Tree Trunk minetest.register_node("ethereal:banana_wood", { -- Banana Tree Wood description = "Banana Wood", tiles = {"banana_wood.png"}, + is_ground_content = false, groups = {wood=1,choppy=2,oddly_breakable_by_hand=1,flammable=3}, sounds = default.node_sound_wood_defaults(), }) |