Reduce frequency of vines ABM to reduce load

This commit is contained in:
Wuzzy 2017-11-02 23:52:09 +01:00
parent 2a8fcd119b
commit d66de5adfb
1 changed files with 2 additions and 2 deletions

View File

@ -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!