Only check and remove repeatable scav quests from scav profile

This commit is contained in:
Dev 2024-01-05 22:55:19 +00:00
parent bd373a993d
commit 9fb747f5f6

View File

@ -526,7 +526,10 @@ export class QuestController
currentRepeatable.inactiveQuests.push(repeatableQuest);
// Need to remove redundant scav quest object as its no longer necessary, is tracked in pmc profile
this.removeQuestFromScavProfile(sessionID, repeatableQuest._id);
if (repeatableQuest.side === "Scav")
{
this.removeQuestFromScavProfile(sessionID, repeatableQuest._id);
}
}
}