@@ -18,6 +18,7 @@ import {ShipService} from '../ship/ship.service';
18
18
import { SystemService } from '../system/system.service' ;
19
19
import { ResourceName } from '../game-logic/resources' ;
20
20
import { SystemLogicService } from '../system/system-logic.service' ;
21
+ import { Ship } from '../ship/ship.schema' ;
21
22
22
23
@Injectable ( )
23
24
@EventRepository ( )
@@ -38,6 +39,7 @@ export class JobService extends MongooseRepository<Job> {
38
39
39
40
async createJob ( dto : CreateJobDto , empire : EmpireDocument , system ?: SystemDocument ) : Promise < Job | null > {
40
41
// Check fleet access
42
+ let shipToDelete : Ship | undefined ;
41
43
if ( dto . type === JobType . UPGRADE ) {
42
44
if ( ! system ) {
43
45
throw new NotFoundException ( 'System not found.' ) ;
@@ -50,8 +52,7 @@ export class JobService extends MongooseRepository<Job> {
50
52
this . jobLogicService . checkFleet ( 'explorer' , fleets , ships ) ;
51
53
} else if ( system . upgrade === 'explored' ) {
52
54
// 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 ) ;
55
56
}
56
57
}
57
58
}
@@ -82,6 +83,8 @@ export class JobService extends MongooseRepository<Job> {
82
83
// Deduct resources from the empire
83
84
this . empireLogicService . deductResources ( empire , cost ) ;
84
85
86
+ shipToDelete && await this . shipService . deleteOne ( shipToDelete . _id ) ;
87
+
85
88
const jobData : Omit < Job , keyof GlobalSchema > = {
86
89
empire : empire . _id ,
87
90
game : empire . game ,
0 commit comments