From 40435a0e122ae6e7477020ea0aa274c0eec456af Mon Sep 17 00:00:00 2001 From: CWX Date: Sun, 19 Jan 2025 14:53:34 +0000 Subject: [PATCH] fix capitalisation --- Core/Services/BotLootCacheService.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Core/Services/BotLootCacheService.cs b/Core/Services/BotLootCacheService.cs index 4e2ceec7..34ca1658 100644 --- a/Core/Services/BotLootCacheService.cs +++ b/Core/Services/BotLootCacheService.cs @@ -191,19 +191,19 @@ public class BotLootCacheService( // Sort loot pool into separate buckets switch (kvp.Key) { - case "specialloot": + case "SpecialLoot": AddItemsToPool(specialLootPool, kvp.Value); break; - case "pockets": + case "Pockets": AddItemsToPool(pocketLootPool, kvp.Value); break; - case "tacticalvest": + case "TacticalVest": AddItemsToPool(vestLootPool, kvp.Value); break; - case "securedcontainer": + case "SecuredContainer": AddItemsToPool(secureLootTPool, kvp.Value); break; - case "backpack": + case "Backpack": AddItemsToPool(backpackLootPool, kvp.Value); break; default: