From a1849f510e893aa066481405d23b0775fe881979 Mon Sep 17 00:00:00 2001 From: Jordan Date: Fri, 15 May 2026 20:32:41 -0400 Subject: [PATCH] add missing armory feets inventory container --- Auracite/Package.cs | 1 + Auracite/Steps/InventoryStep.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/Auracite/Package.cs b/Auracite/Package.cs index 4c4bf83..f3f110b 100644 --- a/Auracite/Package.cs +++ b/Auracite/Package.cs @@ -135,6 +135,7 @@ public class CharacterJson public InventoryContainer? armory_hands; public InventoryContainer? armory_waist; public InventoryContainer? armory_legs; + public InventoryContainer? armory_feets; public InventoryContainer? armory_ear; public InventoryContainer? armory_neck; public InventoryContainer? armory_wrist; diff --git a/Auracite/Steps/InventoryStep.cs b/Auracite/Steps/InventoryStep.cs index ff253b7..41c030a 100644 --- a/Auracite/Steps/InventoryStep.cs +++ b/Auracite/Steps/InventoryStep.cs @@ -29,6 +29,7 @@ public void Run() Plugin.package.armory_hands = ProcessContainer(manager->GetInventoryContainer(InventoryType.ArmoryHands)); Plugin.package.armory_waist = ProcessContainer(manager->GetInventoryContainer(InventoryType.ArmoryWaist)); Plugin.package.armory_legs = ProcessContainer(manager->GetInventoryContainer(InventoryType.ArmoryLegs)); + Plugin.package.armory_feets = ProcessContainer(manager->GetInventoryContainer(InventoryType.ArmoryFeets)); Plugin.package.armory_ear = ProcessContainer(manager->GetInventoryContainer(InventoryType.ArmoryEar)); Plugin.package.armory_neck = ProcessContainer(manager->GetInventoryContainer(InventoryType.ArmoryNeck)); Plugin.package.armory_wrist = ProcessContainer(manager->GetInventoryContainer(InventoryType.ArmoryWrist));