From fedfe1bf8eb911a1e8121c85d9c6eda52ebef02c Mon Sep 17 00:00:00 2001 From: Chomp Date: Fri, 30 May 2025 14:32:07 +0100 Subject: [PATCH] Renamed method: RemoveFiRStatusFromItems`` --- Libraries/SPTarkov.Server.Core/Helpers/InRaidHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();