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:
parent
583c3c6094
commit
3dd3dc71ab
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user