Skip to content

Commit 135d80e

Browse files
committedNov 23, 2015
Default/trees: Make 'can grow' public to enable over-riding
1 parent 0d49978 commit 135d80e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎mods/default/trees.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
local random = math.random
88

9-
local function can_grow(pos)
9+
function default.can_grow(pos)
1010
local node_under = minetest.get_node_or_nil({x = pos.x, y = pos.y - 1, z = pos.z})
1111
if not node_under then
1212
return false
@@ -32,7 +32,7 @@ minetest.register_abm({
3232
interval = 10,
3333
chance = 50,
3434
action = function(pos, node)
35-
if not can_grow(pos) then
35+
if not default.can_grow(pos) then
3636
return
3737
end
3838

0 commit comments

Comments
 (0)
Please sign in to comment.