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; } }