Include armory in default inventory types

master
Liza 2024-10-12 14:55:03 +02:00
parent 7682bc325c
commit da37092a85
Signed by: liza
GPG Key ID: 7199F8D727D55F67
1 changed files with 16 additions and 2 deletions

View File

@ -25,6 +25,20 @@ internal sealed class DropboxQueue : IDisposable
InventoryType.Inventory4,
InventoryType.Crystals,
InventoryType.Currency,
InventoryType.ArmoryMainHand,
InventoryType.ArmoryOffHand,
InventoryType.ArmoryHead,
InventoryType.ArmoryBody,
InventoryType.ArmoryHands,
InventoryType.ArmoryLegs,
InventoryType.ArmoryFeets,
InventoryType.ArmoryEar,
InventoryType.ArmoryNeck,
InventoryType.ArmoryWrist,
InventoryType.ArmoryRings,
];
private readonly ICommandManager _commandManager;
@ -251,8 +265,8 @@ internal sealed class DropboxQueue : IDisposable
private readonly DalamudReflector _reflector;
private readonly IPluginLog _pluginLog;
private readonly ICallGateSubscriber<object> _beginTradingQueue;
private readonly ICallGateSubscriber<uint,bool,int> _getItemQuantity;
private readonly ICallGateSubscriber<uint,bool,int, object> _setItemQuantity;
private readonly ICallGateSubscriber<uint, bool, int> _getItemQuantity;
private readonly ICallGateSubscriber<uint, bool, int, object> _setItemQuantity;
public DropboxApi(IDalamudPluginInterface pluginInterface, DalamudReflector reflector, IPluginLog pluginLog)
{