Skip to content

Commit 1ba9e67

Browse files
committedAug 8, 2024
fix: Don't delete colonizer before other checks are complete
1 parent 596e2c2 commit 1ba9e67

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎src/job/job.service.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import {ShipService} from '../ship/ship.service';
1818
import {SystemService} from '../system/system.service';
1919
import {ResourceName} from '../game-logic/resources';
2020
import {SystemLogicService} from '../system/system-logic.service';
21+
import {Ship} from '../ship/ship.schema';
2122

2223
@Injectable()
2324
@EventRepository()
@@ -38,6 +39,7 @@ export class JobService extends MongooseRepository<Job> {
3839

3940
async createJob(dto: CreateJobDto, empire: EmpireDocument, system?: SystemDocument): Promise<Job | null> {
4041
// Check fleet access
42+
let shipToDelete: Ship | undefined;
4143
if (dto.type === JobType.UPGRADE) {
4244
if (!system) {
4345
throw new NotFoundException('System not found.');
@@ -50,8 +52,7 @@ export class JobService extends MongooseRepository<Job> {
5052
this.jobLogicService.checkFleet('explorer', fleets, ships);
5153
} else if (system.upgrade === 'explored') {
5254
// check and delete colonizer
53-
const ship = this.jobLogicService.checkFleet('colonizer', fleets, ships);
54-
await this.shipService.deleteOne(ship._id);
55+
shipToDelete = this.jobLogicService.checkFleet('colonizer', fleets, ships);
5556
}
5657
}
5758
}
@@ -82,6 +83,8 @@ export class JobService extends MongooseRepository<Job> {
8283
// Deduct resources from the empire
8384
this.empireLogicService.deductResources(empire, cost);
8485

86+
shipToDelete && await this.shipService.deleteOne(shipToDelete._id);
87+
8588
const jobData: Omit<Job, keyof GlobalSchema> = {
8689
empire: empire._id,
8790
game: empire.game,

0 commit comments

Comments
 (0)
Failed to load comments.