From df1e490a9ed9bb21732141fb52023add675d404a Mon Sep 17 00:00:00 2001 From: Duane Date: Sun, 24 Jul 2016 23:49:49 -0500 Subject: [PATCH] Adjust mushroom growth. --- abms.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/abms.lua b/abms.lua index dd95d64..0331498 100644 --- a/abms.lua +++ b/abms.lua @@ -583,7 +583,7 @@ local huge_mushroom_cap_node = {name = 'fun_caves:huge_mushroom_cap'} minetest.register_abm({ nodenames = {"fun_caves:giant_mushroom_stem"}, interval = 2 * time_factor, - chance = 75, + chance = 150, action = function(pos, node) if not (pos and node) then return @@ -638,7 +638,7 @@ local giant_mushroom_stem_node = {name = 'fun_caves:giant_mushroom_stem'} minetest.register_abm({ nodenames = mushrooms, interval = 5 * time_factor, - chance = 375, + chance = 750, action = function(pos, node) if not (pos and node) then return @@ -672,7 +672,7 @@ local giant_mushroom_cap_node = {name = "fun_caves:giant_mushroom_cap"} minetest.register_abm({ nodenames = {"fun_caves:huge_mushroom_cap"}, interval = 9 * time_factor, - chance = 1000, + chance = 2000, action = function(pos, node) if not (pos and node) then return