From 00e1679dd9a6cc598ac0ec543a1af93b9c804745 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 30 May 2023 13:35:34 +0100 Subject: [PATCH] Log fence standing changes post-raid --- project/src/controllers/InraidController.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/project/src/controllers/InraidController.ts b/project/src/controllers/InraidController.ts index f34dae42..25e840ac 100644 --- a/project/src/controllers/InraidController.ts +++ b/project/src/controllers/InraidController.ts @@ -352,6 +352,7 @@ export class InraidController // Successful extract with scav adds 0.01 standing if (offraidData.exit === "survived") { + this.logger.debug(`Old fence standing: ${fenceStanding}`); fenceStanding += this.inraidConfig.scavExtractGain; } @@ -363,6 +364,7 @@ export class InraidController // Make standing changes to scav profile scavData.TradersInfo[fenceId].standing = Math.min(Math.max(fenceStanding, -7), 15); + this.logger.debug(`New fence standing: ${scavData.TradersInfo[fenceId].standing}`); // Make standing changes to pmc profile pmcData.TradersInfo[fenceId].standing = scavData.TradersInfo[fenceId].standing;