First iteration of retainer

This commit is contained in:
Zeffuro
2025-12-30 02:58:02 +01:00
parent 300fcee7ac
commit f3b006b276
11 changed files with 330 additions and 5 deletions
@@ -186,6 +186,8 @@ public static unsafe class InventoryScanner
{
InventorySourceType.MainBags => InventoryManager.Instance()->GetEmptySlotsInBag(),
InventorySourceType.SaddleBag => GetEmptySlotsInContainer(InventorySourceDefinitions.SaddleBag),
InventorySourceType.PremiumSaddleBag => GetEmptySlotsInContainer(InventorySourceDefinitions.PremiumSaddleBag),
InventorySourceType.AllSaddleBags => GetEmptySlotsInContainer(InventorySourceDefinitions.AllSaddleBags),
InventorySourceType.Retainer => GetEmptySlotsInContainer(InventorySourceDefinitions.Retainer),
_ => 0,
};