0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-12 16:10:43 -05:00

Fixed removeNewBeginningRequirementFromPrestige looking for the wrong id

This commit is contained in:
Chomp 2025-02-12 11:32:57 +00:00
parent 4920244c6f
commit 3b436f2a42

View File

@ -138,7 +138,7 @@ export class PostDbLoadService {
const prestigeDb = this.databaseService.getTemplates().prestige;
for (const prestige of prestigeDb.elements) {
prestige.conditions = prestige.conditions.filter(
(condition) => condition.target !== "6761ff17cdc36bd66102e9d0",
(condition) => condition.target !== "6761f28a022f60bb320f3e95",
);
}
}