From 306591f082a0b5da7fbf331b9b55bd14898e99b1 Mon Sep 17 00:00:00 2001 From: Duane Date: Wed, 15 Jun 2016 06:45:18 -0500 Subject: [PATCH] Adjust fungal growth. --- abms.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/abms.lua b/abms.lua index 912f883..23f8861 100644 --- a/abms.lua +++ b/abms.lua @@ -167,7 +167,7 @@ end) -- Exploding fungal fruit minetest.register_abm({ nodenames = {"fun_caves:fungal_tree_fruit"}, - interval = 30 * fun_caves.time_factor, + interval = 20 * fun_caves.time_factor, chance = 15, catch_up = false, action = function(pos, node) @@ -286,7 +286,7 @@ minetest.register_abm({ nodenames = {"default:dirt"}, neighbors = {"air"}, interval = 10 * fun_caves.time_factor, - chance = 10, + chance = 15, action = function(pos, node) if pos.y > 0 then return @@ -308,7 +308,7 @@ minetest.register_abm({ -- mushroom growth -- small into huge minetest.register_abm({ nodenames = mushrooms, - interval = 100 * fun_caves.time_factor, + interval = 75 * fun_caves.time_factor, chance = 25, action = function(pos, node) -- Clumsy, but it's the best way to limit them to caves. @@ -337,7 +337,7 @@ minetest.register_abm({ -- mushroom growth -- huge into giant minetest.register_abm({ nodenames = {"fun_caves:huge_mushroom_cap"}, - interval = 500 * fun_caves.time_factor, + interval = 300 * fun_caves.time_factor, chance = 30, action = function(pos, node) local pos_up = {x=pos.x,y=pos.y+1,z=pos.z}