Skip to content

Commit

Permalink
Correct node definitons for pine saplings and pine needles
Browse files Browse the repository at this point in the history
  • Loading branch information
PilzAdam committed Dec 7, 2014
1 parent 5a06de1 commit 2ebd6b3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions mods/default/nodes.lua
Expand Up @@ -1155,7 +1155,8 @@ minetest.register_node("default:pine_needles",{
tiles = {"default_pine_needles.png"},
waving = 1,
paramtype = "light",
groups = {snappy=3,leafdecay=3,leaves=1},
is_ground_content = false,
groups = {snappy=3, leafdecay=3, flammable=2, leaves=1},
drop = {
max_items = 1,
items = {
Expand Down Expand Up @@ -1184,8 +1185,13 @@ minetest.register_node("default:pine_sapling", {
wield_image = "default_pine_sapling.png",
paramtype = "light",
walkable = false,
is_ground_content = true,
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,attached_node=1,sapling=1},
sounds = default.node_sound_defaults(),
sounds = default.node_sound_leaves_defaults(),
})

minetest.register_node("default:pinetree", {
Expand Down

0 comments on commit 2ebd6b3

Please sign in to comment.