diff --git a/Libraries/SPTarkov.Server.Core/Helpers/InRaidHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/InRaidHelper.cs index 5258db4e..3891b6ad 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/InRaidHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/InRaidHelper.cs @@ -77,7 +77,7 @@ public class InRaidHelper( // Do after above filtering code to reduce work done if (!isSurvived && !isTransfer && !_inRaidConfig.AlwaysKeepFoundInRaidOnRaidEnd) { - RemoveFiRStatusFromCertainItems(postRaidProfile.Inventory.Items); + RemoveFiRStatusFromItems(postRaidProfile.Inventory.Items); } // Add items from client profile into server profile @@ -94,7 +94,7 @@ public class InRaidHelper( /// Remove FiR status from items. /// /// Items to process - protected void RemoveFiRStatusFromCertainItems(List items) + protected void RemoveFiRStatusFromItems(List items) { var dbItems = _databaseService.GetItems();