From d66de5adfb1aedeef96348bd8bf9c8eb78f5436c Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 2 Nov 2017 23:52:09 +0100 Subject: [PATCH] Reduce frequency of vines ABM to reduce load --- mods/ITEMS/mcl_core/functions.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ITEMS/mcl_core/functions.lua b/mods/ITEMS/mcl_core/functions.lua index c098f3b75..f008d66f6 100644 --- a/mods/ITEMS/mcl_core/functions.lua +++ b/mods/ITEMS/mcl_core/functions.lua @@ -1138,8 +1138,8 @@ minetest.register_abm({ nodenames = {"mcl_core:vine"}, neighbors = {"air"}, -- A low interval and a high inverse chance spreads the load - interval = 3, - chance = 5, + interval = 4, + chance = 8, action = function(p0, node, _, _) if not mcl_core.check_vines_supported(p0, node) then -- Vines must die!