1
0
mirror of https://github.com/veden/Rampant.git synced 2024-12-26 20:54:12 +02:00

FACTO-174: Increased hive spawn chance by 5x outside resource chunks

This commit is contained in:
Aaron Veden 2022-06-12 22:34:49 -07:00
parent 721dd64b90
commit 832bad6225
No known key found for this signature in database
GPG Key ID: FF5990B1C6DD3F84
2 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@ Version: 3.1.2
- Siege groups have their attraction to resource patches reduced by 50%
- Reduced resource patch pheromone when enemy structures exist on chunk by 100x
- Increased enemy pheromone weight for pathing by 2.5x
- Increased hive spawning outside resources chunks by 5x
Bugfixes:
- Fixed sent aggressive squads count could be negative
- Added missing sent and max siege groups on debug log

View File

@ -226,12 +226,12 @@ local function findEntityUpgrade(baseAlignment, currentEvo, evoIndex, originalEn
and
(
(
(roll <= 0.002) and
(roll <= 0.01) and
not map.universe.proxyEntityLookup[entityName]
)
or
(
(roll <= 0.202) and
(roll <= 0.210) and
(getResourceGenerator(map, chunk) > 0)
)
)