fix capitalisation

This commit is contained in:
CWX
2025-01-19 14:53:34 +00:00
parent 7ac870b298
commit 40435a0e12
+5 -5
View File
@@ -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: