Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Auracite/Package.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions Auracite/Steps/InventoryStep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down
Loading