Fixed error on raid end

This commit is contained in:
Chomp
2025-07-23 22:08:24 +01:00
parent 10ad2dfe9a
commit 8dcb87e1b8
@@ -171,7 +171,8 @@ public class InRaidHelper(
{
// Get inventory item ids to remove from players profile
var itemIdsToDeleteFromProfile = GetInventoryItemsLostOnDeath(pmcData)
.Select(item => item.Id);
.Select(item => item.Id)
.ToList();
foreach (var itemIdToDelete in itemIdsToDeleteFromProfile)
// Items inside containers are handled as part of function
{