From 0d8d6e4fec24c7b7cf8e54dc07b9d4c3979cf48c Mon Sep 17 00:00:00 2001 From: CWX Date: Thu, 10 Apr 2025 12:37:16 +0100 Subject: [PATCH] fix spelling --- .../SPTarkov.Server.Core/Services/BotLootCacheService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Libraries/SPTarkov.Server.Core/Services/BotLootCacheService.cs b/Libraries/SPTarkov.Server.Core/Services/BotLootCacheService.cs index 1d983733..c71c371e 100644 --- a/Libraries/SPTarkov.Server.Core/Services/BotLootCacheService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/BotLootCacheService.cs @@ -168,7 +168,7 @@ public class BotLootCacheService( Dictionary backpackLootPool = new(); Dictionary pocketLootPool = new(); Dictionary vestLootPool = new(); - Dictionary secureLootTPool = new(); + Dictionary secureLootPool = new(); Dictionary combinedLootPool = new(); if (isPmc) @@ -212,7 +212,7 @@ public class BotLootCacheService( AddItemsToPool(vestLootPool, kvp.Value); break; case "SecuredContainer": - AddItemsToPool(secureLootTPool, kvp.Value); + AddItemsToPool(secureLootPool, kvp.Value); break; case "Backpack": AddItemsToPool(backpackLootPool, kvp.Value); @@ -464,7 +464,7 @@ public class BotLootCacheService( cacheForRole.BackpackLoot = filteredBackpackItems; cacheForRole.PocketLoot = filteredPocketItems; cacheForRole.VestLoot = filteredVestItems; - cacheForRole.SecureLoot = secureLootTPool; + cacheForRole.SecureLoot = secureLootPool; } }