From 456220767ef5fc83963392dbdcb5cc5e5eb5e81f Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 12 Feb 2024 17:08:21 +0000 Subject: [PATCH] Do not reduce scav rep after killing a traitor scav --- project/src/helpers/InRaidHelper.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/project/src/helpers/InRaidHelper.ts b/project/src/helpers/InRaidHelper.ts index 658b9cc2..810f9bbc 100644 --- a/project/src/helpers/InRaidHelper.ts +++ b/project/src/helpers/InRaidHelper.ts @@ -94,6 +94,11 @@ export class InRaidHelper let fenceStanding = existingFenceStanding; for (const victim of victims) { + if (victim.Name?.includes(")") && victim.Side === "Savage") + { + continue; + } + const standingChangeForKill = this.getFenceStandingChangeForKillAsScav(victim); const additionalLossForKill = this.getAdditionalLossForKill(fenceStanding, standingChangeForKill);