Do not reduce scav rep after killing a traitor scav

This commit is contained in:
Dev 2024-02-12 17:08:21 +00:00
parent 5dacc1419e
commit 456220767e

View File

@ -94,6 +94,11 @@ export class InRaidHelper
let fenceStanding = existingFenceStanding; let fenceStanding = existingFenceStanding;
for (const victim of victims) for (const victim of victims)
{ {
if (victim.Name?.includes(")") && victim.Side === "Savage")
{
continue;
}
const standingChangeForKill = this.getFenceStandingChangeForKillAsScav(victim); const standingChangeForKill = this.getFenceStandingChangeForKillAsScav(victim);
const additionalLossForKill = this.getAdditionalLossForKill(fenceStanding, standingChangeForKill); const additionalLossForKill = this.getAdditionalLossForKill(fenceStanding, standingChangeForKill);