From 8496f86b6b8998dd340f859a3219a7382b22d02b Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Fri, 1 Mar 2024 13:25:15 +0100 Subject: [PATCH] Fix gear set changes and item move events not being instantiated. --- Glamourer/Interop/InventoryService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Glamourer/Interop/InventoryService.cs b/Glamourer/Interop/InventoryService.cs index 63abc9d..c5689fa 100644 --- a/Glamourer/Interop/InventoryService.cs +++ b/Glamourer/Interop/InventoryService.cs @@ -3,13 +3,14 @@ using Dalamud.Plugin.Services; using FFXIVClientStructs.FFXIV.Client.Game; using FFXIVClientStructs.FFXIV.Client.UI.Misc; using Glamourer.Events; +using OtterGui.Services; using Penumbra.GameData.Enums; using Penumbra.GameData.Structs; using Penumbra.String; namespace Glamourer.Interop; -public unsafe class InventoryService : IDisposable +public unsafe class InventoryService : IDisposable, IRequiredService { private readonly MovedEquipment _movedItemsEvent; private readonly EquippedGearset _gearsetEvent;