From 3bc315caf586f99a4e567901561c4892fc0e6c44 Mon Sep 17 00:00:00 2001 From: Aaron Veden Date: Sat, 8 Apr 2023 09:32:01 -0700 Subject: [PATCH] FACTO-304: Increased settlers per nests to 700 --- changelog.txt | 2 ++ control.lua | 2 +- libs/Constants.lua | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 6996bf1..a187218 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,7 @@ --------------------------------------------------------------------------------------------------- Version: 3.3.1 + Tweaks: + - Increased number of active and raid nests per allowed settler group per regional base to 700 Bugfixes: - Fixed hive owned structure cleanup routine from not checking hive id correctly - Fixed hive building cursor drifting diff --git a/control.lua b/control.lua index 62ee697..8bf32f6 100644 --- a/control.lua +++ b/control.lua @@ -307,7 +307,7 @@ local function onModSettingsChange(event) end local function onConfigChanged() - game.print("Rampant - Version 3.3.0") + game.print("Rampant - Version 3.3.1") initializeLibraries(true) Upgrade.attempt() diff --git a/libs/Constants.lua b/libs/Constants.lua index b8d69ce..59cec11 100644 --- a/libs/Constants.lua +++ b/libs/Constants.lua @@ -136,7 +136,7 @@ constants.BASE_GENERATION_STATE_ACTIVE = 1 -- constants.BASE_AI_STATE_MUTATE = 3 constants.ACTIVE_NESTS_PER_AGGRESSIVE_GROUPS = 30 -constants.ALL_NESTS_PER_EXPANSION_GROUPS = 150 +constants.ALL_NESTS_PER_EXPANSION_GROUPS = 700 constants.AGGRESSIVE_CAN_ATTACK_WAIT_MIN_DURATION = 0.5 constants.AGGRESSIVE_CAN_ATTACK_WAIT_MAX_DURATION = 3