mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
Merge branch 'master' of https://dev.sp-tarkov.com/SPT/Server
This commit is contained in:
commit
c57d2ccf82
@ -4,4 +4,5 @@ export interface IInsuredItemsData
|
||||
durability?: number
|
||||
maxDurability?: number
|
||||
hits?: number
|
||||
usedInQuest: boolean
|
||||
}
|
||||
|
@ -251,6 +251,14 @@ export class InsuranceService
|
||||
// equipment slot.
|
||||
const equipmentParentItem = this.itemHelper.getEquipmentParent(preRaidItem._id, preRaidGearMap);
|
||||
|
||||
const offraidDataitem = offraidData.insurance?.find(
|
||||
(insuranceItem) => insuranceItem.id === insuredItem.itemId);
|
||||
|
||||
if (offraidDataitem?.usedInQuest)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// Now that we have the equipment parent item, we can check to see if that item is located in an equipment
|
||||
// slot that is flagged as lost on death. If it is, then the itemShouldBeLostOnDeath.
|
||||
const itemShouldBeLostOnDeath = this.lostOnDeathConfig.equipment[equipmentParentItem?.slotId] ?? true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user