fix oak grown

master
runs 2021-01-26 21:46:18 +01:00
parent bf25c6c212
commit c113ff48d6
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ minetest.register_node("oak:acorn", {
local function grow_new_oak_tree(pos)
if not default.can_grow(pos) then
-- try a bit later again
minetest.get_node_timer(pos):start(math.random(1, 1))
minetest.get_node_timer(pos):start(math.random(240, 600))
return
end
minetest.remove_node(pos)
@ -109,7 +109,7 @@ minetest.register_node("oak:sapling", {
sounds = default.node_sound_leaves_defaults(),
on_construct = function(pos)
minetest.get_node_timer(pos):start(math.random(1,1))
minetest.get_node_timer(pos):start(math.random(2400,4800))
end,
on_place = function(itemstack, placer, pointed_thing)
@ -200,7 +200,7 @@ minetest.register_lbm({
name = "oak:convert_oak_saplings_to_node_timer",
nodenames = {"oak:sapling"},
action = function(pos)
minetest.get_node_timer(pos):start(math.random(1, 1))
minetest.get_node_timer(pos):start(math.random(1200, 2400))
end
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB