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

Fixed randomiseArmorInsertsDurabilities not removing plate slots that have been chosen to be removed from fence armors

This commit is contained in:
Chomp 2025-01-24 14:05:33 +00:00
parent a7bc9c9849
commit 1ffa0678e9

View File

@ -1116,8 +1116,7 @@ export class FenceService {
continue;
}
let armorWithMods = armorItemAndMods;
const armorWithMods = armorItemAndMods;
const modItemDbDetails = this.itemHelper.getItem(plateTpl)[1];
// Chance to remove plate
@ -1125,7 +1124,7 @@ export class FenceService {
this.traderConfig.fence.chancePlateExistsInArmorPercent[modItemDbDetails._props?.armorClass ?? "3"];
if (!this.randomUtil.getChance100(plateExistsChance)) {
// Remove plate from armor
armorWithMods = armorItemAndMods.filter(
armorItemAndMods = armorItemAndMods.filter(
(item) => item.slotId.toLowerCase() !== plateSlot._name.toLowerCase(),
);