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

FACTO-293: Halved movement penalty allowance

This commit is contained in:
Aaron Veden 2023-04-06 19:50:59 -07:00
parent 583c3c6094
commit 3dd3dc71ab
No known key found for this signature in database
GPG Key ID: FF5990B1C6DD3F84
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ Version: 3.3.0
- On group destruction all members are destroyed to prevent orphaned biters
- Increased radius of what pathing requires to complete a move path request
- Switched use_group_distraction to true on forming group
- Halved movement penalty violations before building, kamikaze, or dispanding unit groups
Bugfixes:
- Fixed occasionally compression number wouldn't appear on unit group
- Fixed squad compression could take place when attacking

View File

@ -268,7 +268,7 @@ local function addMovementPenalty(squad, chunk)
local penalty = penalties[i]
if (penalty.c.id == chunk.id) then
penalty.v = penalty.v + 1
if penalty.v >= 15 then
if penalty.v >= 7 then
if Universe.enabledMigration and
(Universe.builderCount < Universe.AI_MAX_BUILDER_COUNT) then
squad.settler = true