Skip insured items in special slots being returned on death

This commit is contained in:
Dev 2023-12-18 23:08:27 +00:00
parent 8853159b55
commit 2f3202b921
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
"54cb50c76803fa8b248b4571": 75,
"54cb57776803fa99248b456e": 85
},
"blacklistedEquipment": [],
"returnTimeOverrideSeconds": 0,
"blacklistedEquipment": ["SpecialSlot1", "SpecialSlot2", "SpecialSlot3"],
"returnTimeOverrideSeconds": 0,
"runIntervalSeconds": 600
}

View File

@ -242,7 +242,7 @@ export class InsuranceService
continue;
}
// Skip items we should never return
// Skip slots we should never return
if (this.insuranceConfig.blacklistedEquipment.includes(preRaidItem.slotId))
{
continue;