From a51a775b182f9b88de4adfc6a4c3f10a5ca498b4 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 5 Jun 2022 00:53:46 +0200 Subject: [PATCH] Slower alga decay --- mods/rp_default/functions.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/rp_default/functions.lua b/mods/rp_default/functions.lua index 7e28fe7d..828b3df1 100644 --- a/mods/rp_default/functions.lua +++ b/mods/rp_default/functions.lua @@ -733,8 +733,8 @@ minetest.register_abm( -- algae die/become smaller if not fully underwater { label = "Alga decay", nodenames = {"group:alga"}, - interval = 1, - chance = 2, + interval = 10, + chance = 20, action = function(pos, node) local height = math.ceil(node.param2 / 16) local segmentpos = vector.new(pos.x,pos.y,pos.z)