Skip to content

Commit

Permalink
Set param2 to 1 if player places leaves
Browse files Browse the repository at this point in the history
  • Loading branch information
PilzAdam committed Dec 6, 2014
1 parent 2c2edfa commit 9ec33f3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions game_api.txt
Expand Up @@ -206,5 +206,9 @@ the node can be without decaying.
If param2 of the node is ~= 0, the node will always be preserved. Thus, if
the player places a node of that kind, you will want to set param2=1 or so.

The function default.after_place_leaves can be set as after_place_node of a node
to set param2 to 1 if the player places the node (should not be used for nodes
that use param2 otherwise (e.g. facedir)).

If the node is in the leafdecay_drop group then it will always be dropped as an
item.
6 changes: 6 additions & 0 deletions mods/default/functions.lua
Expand Up @@ -244,6 +244,12 @@ minetest.register_globalstep(function(dtime)
math.floor(dtime * finds_per_second)
end)

default.after_place_leaves = function(pos, placer, itemstack, pointed_thing)
local node = minetest.get_node(pos)
node.param2 = 1
minetest.set_node(pos, node)
end

minetest.register_abm({
nodenames = {"group:leafdecay"},
neighbors = {"air", "group:liquid"},
Expand Down
3 changes: 3 additions & 0 deletions mods/default/nodes.lua
Expand Up @@ -277,6 +277,7 @@ minetest.register_node("default:jungleleaves", {
}
},
sounds = default.node_sound_leaves_defaults(),
after_place_node = default.after_place_leaves,
})

minetest.register_node("default:junglesapling", {
Expand Down Expand Up @@ -341,6 +342,7 @@ minetest.register_node("default:leaves", {
}
},
sounds = default.node_sound_leaves_defaults(),
after_place_node = default.after_place_leaves,
})

minetest.register_node("default:cactus", {
Expand Down Expand Up @@ -1505,6 +1507,7 @@ minetest.register_node("default:pine_needles",{
}
},
sounds = default.node_sound_leaves_defaults(),
after_place_node = default.after_place_leaves,
})

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

0 comments on commit 9ec33f3

Please sign in to comment.