0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00

include cyber background customisation on dev profiles

This commit is contained in:
Chomp 2025-01-17 12:26:54 +00:00
parent 5c29c898b6
commit d078d10268

View File

@ -314,6 +314,16 @@ export class CreateProfileService {
});
}
}
// Dev profile additions
if (fullProfile.info.edition.toLowerCase().includes("developer")) {
// CyberTark background
fullProfile.customisationUnlocks.push({
id: "67585108def253bd97084552",
source: CustomisationSource.DEFAULT,
type: CustomisationType.ENVIRONMENT,
});
}
}
protected getGameEdition(profile: ISptProfile): string {