File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -228,13 +228,22 @@ export class SystemService extends MongooseRepository<System> {
228
228
229
229
for ( const [ key , value ] of Object . entries ( DISTRICTS ) ) {
230
230
const chance : District [ 'chance' ] = value . chance ;
231
- districtChances [ `districts.${ key } .chance.${ system . type } ` as Variable ] = chance [ system . type ] ?? value . chance . default ;
231
+ if ( chance ) {
232
+ districtChances [ `districts.${ key } .chance.${ system . type } ` as Variable ] = chance [ system . type ] ?? chance . default ?? 0 ;
233
+ }
232
234
}
233
235
234
236
calculateVariables ( districtChances , empire ) ;
235
237
236
238
//Generate random districts depending on the chances
237
239
this . randomDistricts ( system , districtChances ) ;
240
+
241
+ // Set slots for generic districts to capacity
242
+ for ( const district of Object . values ( DISTRICTS ) ) {
243
+ if ( ! ( 'default' in district . chance ) ) {
244
+ system . districtSlots [ district . id ] = system . capacity ;
245
+ }
246
+ }
238
247
}
239
248
240
249
private randomDistricts ( system : SystemDocument , districtChances : Partial < Record < Variable , number > > ) {
You can’t perform that action at this time.
0 commit comments