diff --git a/project/src/services/LocationLifecycleService.ts b/project/src/services/LocationLifecycleService.ts index 7def1b48..a94ad742 100644 --- a/project/src/services/LocationLifecycleService.ts +++ b/project/src/services/LocationLifecycleService.ts @@ -129,7 +129,7 @@ export class LocationLifecycleService { } // Find only scav extracts and overwrite existing exits with them - const scavExtracts = mapExtracts.filter((extract) => extract.Side.toLowerCase() === "scav"); + const scavExtracts = mapExtracts.filter((extract) => ["scav", "coop"].includes(extract.Side.toLowerCase())); if (scavExtracts.length > 0) { // Scav extracts found, use them locationData.exits = scavExtracts;