Skip to content

Commit 9a645b9

Browse files
committed
Merge branch 'refs/heads/fix/v1'
2 parents 2c079f9 + 250b1ae commit 9a645b9

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

docs/Changelog.md

+13
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,16 @@
114114
## Bugfixes
115115

116116
* Fixed isolated system clusters without outgoing links. [#19](https://github.com/sekassel/stp-24-server-tracker/issues/19)
117+
118+
# v1.3.2 (2024-06-17)
119+
120+
## Improvements
121+
122+
* Pop migration now depends on free jobs instead of free capacity.
123+
* New colonies (`colonized`) start with at least one pop.
124+
* Attempting to upgrade a system in the wrong order now results in a `400 Bad Request` error.
125+
126+
## Bugfixes
127+
128+
* Fixed a wrong population delta value in the system resource aggregate.
129+
* Fixed invalid pop growth when a system with capacity 0 is somehow colonized.

src/game-logic/game-logic.service.ts

+4
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,10 @@ export class GameLogicService {
314314

315315
private popGrowth(system: SystemDocument, variables: Record<Variable, number>, aggregates?: Partial<Record<ResourceName, AggregateResult>>) {
316316
const {population, capacity} = system;
317+
if (!capacity) {
318+
// Growth calculation will yield NaN. This is probably an uninhabitable system, so just do nothing.
319+
return;
320+
}
317321
const growthVariable: Variable = `systems.${system.upgrade}.pop_growth`;
318322
const growthRate = variables[growthVariable];
319323
const growth = growthRate * population * Math.clamp(1 - population / capacity, 0, 1); // logistic growth

src/system/system.service.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ export class SystemService extends MongooseRepository<System> {
4444
const {upgrade, districts, buildings, ...rest} = dto;
4545
system.set(rest);
4646
if (upgrade) {
47-
const upgrades = Object.keys(SYSTEM_UPGRADES);
48-
if (upgrades.indexOf(upgrade) !== upgrades.indexOf(system.upgrade) + 1) {
49-
throw new BadRequestException(`Invalid upgrade ${upgrade} for system ${system._id}`);
50-
}
5147
await this.upgradeSystem(system, upgrade, empire);
5248
}
5349
if (districts) {
@@ -62,6 +58,11 @@ export class SystemService extends MongooseRepository<System> {
6258
}
6359

6460
private async upgradeSystem(system: SystemDocument, upgrade: SystemUpgradeName, empire: EmpireDocument) {
61+
const upgrades = Object.keys(SYSTEM_UPGRADES);
62+
if (upgrades.indexOf(upgrade) !== upgrades.indexOf(system.upgrade) + 1) {
63+
throw new BadRequestException(`Invalid upgrade ${upgrade} for system ${system._id}`);
64+
}
65+
6566
system.upgrade = upgrade;
6667
system.capacity *= SYSTEM_UPGRADES[upgrade].capacity_multiplier;
6768

0 commit comments

Comments
 (0)