From 9a3ca488575c3aa6f69846242bdd893b09ff9a16 Mon Sep 17 00:00:00 2001 From: kalilistic <35899782+kalilistic@users.noreply.github.com> Date: Sun, 5 Nov 2023 11:24:29 -0500 Subject: [PATCH] fix: hook manager scope --- Dalamud.DrunkenToad/Core/DalamudContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud.DrunkenToad/Core/DalamudContext.cs b/Dalamud.DrunkenToad/Core/DalamudContext.cs index 3a41e41..cd0def6 100644 --- a/Dalamud.DrunkenToad/Core/DalamudContext.cs +++ b/Dalamud.DrunkenToad/Core/DalamudContext.cs @@ -201,7 +201,7 @@ public class DalamudContext /// Gets or sets service that manages the creation and handling of hooks for function call interception and modification. /// [PluginService] - private static IGameInteropProvider HookManager { get; set; } = null!; + public static IGameInteropProvider HookManager { get; set; } = null!; /// /// Gets or sets service that provides access to game data for Dalamud and plugins.