mirror of
https://github.com/veden/Rampant.git
synced 2025-01-14 02:23:01 +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
|
- On group destruction all members are destroyed to prevent orphaned biters
|
||||||
- Increased radius of what pathing requires to complete a move path request
|
- Increased radius of what pathing requires to complete a move path request
|
||||||
- Switched use_group_distraction to true on forming group
|
- Switched use_group_distraction to true on forming group
|
||||||
|
- Halved movement penalty violations before building, kamikaze, or dispanding unit groups
|
||||||
Bugfixes:
|
Bugfixes:
|
||||||
- Fixed occasionally compression number wouldn't appear on unit group
|
- Fixed occasionally compression number wouldn't appear on unit group
|
||||||
- Fixed squad compression could take place when attacking
|
- Fixed squad compression could take place when attacking
|
||||||
|
@ -268,7 +268,7 @@ local function addMovementPenalty(squad, chunk)
|
|||||||
local penalty = penalties[i]
|
local penalty = penalties[i]
|
||||||
if (penalty.c.id == chunk.id) then
|
if (penalty.c.id == chunk.id) then
|
||||||
penalty.v = penalty.v + 1
|
penalty.v = penalty.v + 1
|
||||||
if penalty.v >= 15 then
|
if penalty.v >= 7 then
|
||||||
if Universe.enabledMigration and
|
if Universe.enabledMigration and
|
||||||
(Universe.builderCount < Universe.AI_MAX_BUILDER_COUNT) then
|
(Universe.builderCount < Universe.AI_MAX_BUILDER_COUNT) then
|
||||||
squad.settler = true
|
squad.settler = true
|
||||||
|
Loading…
Reference in New Issue
Block a user