Skip to content

Commit 3ca5cd9

Browse files
committed
feat: Allow as many generic districts (city, factory) as capacity
1 parent 9647805 commit 3ca5cd9

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/system/system.service.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -228,13 +228,22 @@ export class SystemService extends MongooseRepository<System> {
228228

229229
for (const [key, value] of Object.entries(DISTRICTS)) {
230230
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+
}
232234
}
233235

234236
calculateVariables(districtChances, empire);
235237

236238
//Generate random districts depending on the chances
237239
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+
}
238247
}
239248

240249
private randomDistricts(system: SystemDocument, districtChances: Partial<Record<Variable, number>>) {

0 commit comments

Comments
 (0)