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