From 2e0277e558bdb42fc79ec68820a0e2436f6de23a Mon Sep 17 00:00:00 2001 From: Rogier Date: Tue, 3 Nov 2015 12:31:20 +0100 Subject: [PATCH] Increase fraction of apples that regrow to 25% after longer block inactivity. --- nature_classic/blossom.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nature_classic/blossom.lua b/nature_classic/blossom.lua index 37710a6..62947b5 100644 --- a/nature_classic/blossom.lua +++ b/nature_classic/blossom.lua @@ -61,14 +61,14 @@ minetest.register_abm({ -- Spawning apples -- Limit mass changes after block has not been loaded for some time: --- spawn apples with 10% chance, but with 10 times higher frequency +-- spawn apples with 25% chance, but with 4 times higher frequency minetest.register_abm({ nodenames = { nature.blossom_node }, - interval = nature.apple_delay / 10, + interval = nature.apple_delay / 4, chance = nature.apple_chance, action = function(pos, node, active_object_count, active_object_count_wider) - if math.random(10) == 1 and nature.dtime < 0.2 and not minetest.find_node_near(pos, nature.apple_spread, { "default:apple" }) then + if math.random(4) == 1 and nature.dtime < 0.2 and not minetest.find_node_near(pos, nature.apple_spread, { "default:apple" }) then spawn_apple_under(pos) end end