From 28941cb69e71b8d229e5a332ba7edb8c97dcd6d1 Mon Sep 17 00:00:00 2001 From: goaaats Date: Tue, 18 Nov 2025 21:58:13 +0100 Subject: [PATCH] SelfTestRegistryPluginScoped should inherit from IDalamudService --- .../Plugin/SelfTest/Internal/SelfTestRegistryPluginScoped.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dalamud/Plugin/SelfTest/Internal/SelfTestRegistryPluginScoped.cs b/Dalamud/Plugin/SelfTest/Internal/SelfTestRegistryPluginScoped.cs index 18c518879..e3835ddbc 100644 --- a/Dalamud/Plugin/SelfTest/Internal/SelfTestRegistryPluginScoped.cs +++ b/Dalamud/Plugin/SelfTest/Internal/SelfTestRegistryPluginScoped.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using Dalamud.IoC; using Dalamud.IoC.Internal; using Dalamud.Plugin.Internal.Types; +using Dalamud.Plugin.Services; namespace Dalamud.Plugin.SelfTest.Internal; @@ -12,7 +13,7 @@ namespace Dalamud.Plugin.SelfTest.Internal; [PluginInterface] [ServiceManager.ScopedService] [ResolveVia] -internal class SelfTestRegistryPluginScoped : ISelfTestRegistry, IInternalDisposableService +internal class SelfTestRegistryPluginScoped : ISelfTestRegistry, IInternalDisposableService, IDalamudService { [ServiceManager.ServiceDependency] private readonly SelfTestRegistry selfTestRegistry = Service.Get();