mirror of
https://github.com/veden/Rampant.git
synced 2024-12-30 21:19:46 +02:00
decreased chunk scanning on player, enemy, and resource to 960/minute
This commit is contained in:
parent
5ca4604451
commit
e91fc26066
@ -22,6 +22,7 @@ Date: 23. 11. 2021
|
|||||||
- Increased acceptance rate of higher evolution to tiers when calculated factions
|
- Increased acceptance rate of higher evolution to tiers when calculated factions
|
||||||
- Decreased evolution target variability when calculating bases faction type
|
- Decreased evolution target variability when calculating bases faction type
|
||||||
- Decreased wander time when a settle command fails to 20 seconds
|
- Decreased wander time when a settle command fails to 20 seconds
|
||||||
|
- Reduced player, enemy, resource scanned chunks to 2 every 7 ticks
|
||||||
Bugfixes:
|
Bugfixes:
|
||||||
- Greatly reduced chance a chunk is not processed due to chunk not being actually generated by game engine. You may notice a small delay before the spawners and worms convert to Rampant new enemy versions.
|
- Greatly reduced chance a chunk is not processed due to chunk not being actually generated by game engine. You may notice a small delay before the spawners and worms convert to Rampant new enemy versions.
|
||||||
- Fixed vengence squads only processing half the expected chunks
|
- Fixed vengence squads only processing half the expected chunks
|
||||||
|
@ -45,9 +45,9 @@ constants.RETREAT_MOVEMENT_PHEROMONE_LEVEL_MAX = 130000
|
|||||||
|
|
||||||
constants.PROCESS_QUEUE_SIZE = 140
|
constants.PROCESS_QUEUE_SIZE = 140
|
||||||
constants.SCAN_QUEUE_SIZE = 2
|
constants.SCAN_QUEUE_SIZE = 2
|
||||||
constants.RESOURCE_QUEUE_SIZE = 7
|
constants.RESOURCE_QUEUE_SIZE = 2
|
||||||
constants.ENEMY_QUEUE_SIZE = 7
|
constants.ENEMY_QUEUE_SIZE = 2
|
||||||
constants.PLAYER_QUEUE_SIZE = 7
|
constants.PLAYER_QUEUE_SIZE = 2
|
||||||
constants.CLEANUP_QUEUE_SIZE = 8
|
constants.CLEANUP_QUEUE_SIZE = 8
|
||||||
constants.ATTACK_QUEUE_SIZE = 18
|
constants.ATTACK_QUEUE_SIZE = 18
|
||||||
constants.BASE_QUEUE_SIZE = 1
|
constants.BASE_QUEUE_SIZE = 1
|
||||||
|
Loading…
Reference in New Issue
Block a user