From a68ac13be05f8cb4b2f19fd663d2ade504f0d875 Mon Sep 17 00:00:00 2001 From: Floris Date: Sun, 15 Dec 2024 22:04:27 +0100 Subject: [PATCH] critters: increased unit count filter threshold --- luarules/gadgets/gaia_critters.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/luarules/gadgets/gaia_critters.lua b/luarules/gadgets/gaia_critters.lua index 04de4447847..c1b0ce6e9fa 100644 --- a/luarules/gadgets/gaia_critters.lua +++ b/luarules/gadgets/gaia_critters.lua @@ -32,9 +32,9 @@ end local removeCritters = true -- gradually remove critters when unitcont gets higher local addCrittersAgain = true -- re-add the removed critters again -local minTotalUnits = 1600 -- starting removing critters at this total unit count -local maxTotalunits = 3200 -- finished removing critters at this total unit count -local minimumCritters = 0.15 -- dont remove further than (0.1 == 10%) of critters +local minTotalUnits = 3000 -- starting removing critters at this total unit count +local maxTotalunits = 6000 -- finished removing critters at this total unit count +local minimumCritters = 0.2 -- dont remove further than (0.1 == 10%) of critters local minCritters = math.ceil((Game.mapSizeX*Game.mapSizeZ)/6000000) -- dont remove below this amount local companionRadiusStart = 140 -- if mapcritter is spawned this close it will be converted to companion critter local companionRadiusAfterStart = 13