1
0
mirror of https://github.com/veden/Rampant.git synced 2025-01-14 02:23:01 +02:00

FACTO-76: Halved the base distance level bonus

This commit is contained in:
Aaron Veden 2022-03-19 20:01:02 -07:00
parent c0d2a8f70c
commit 75d843d9e6
No known key found for this signature in database
GPG Key ID: FF5990B1C6DD3F84
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ Version: 3.0.0
- Increased unit spawner cooldown by 2x
- Added point loss on unit death
- Removed squad refunds when vanilla AI or other mods create enemy unit groups above the squad limit
- Halved the base distance bonus per regional base level so regional base cover less ground
Bugfixes:
- Fixed Krastorio2 on_force_created playerforces being nil
- Fixed enemy map scan creating bases unnecessarily

View File

@ -186,7 +186,7 @@ constants.BASE_WORM_UPGRADE = 400
constants.BASE_UPGRADE = 1500
constants.BASE_DISTANCE_THRESHOLD = 30 * constants.CHUNK_SIZE
constants.BASE_DISTANCE_LEVEL_BONUS = 15
constants.BASE_DISTANCE_LEVEL_BONUS = 7.5
constants.BASE_PROCESS_INTERVAL = constants.TICKS_A_SECOND * 20