diff --git a/Dalamud/Hooking/Hook.cs b/Dalamud/Hooking/Hook.cs index 6e1fa24f2..74b9e6384 100644 --- a/Dalamud/Hooking/Hook.cs +++ b/Dalamud/Hooking/Hook.cs @@ -67,7 +67,7 @@ public class Hook : IDisposable, IDalamudHook where T : Delegate if (EnvironmentConfiguration.DalamudForceMinHook) useMinHook = true; - address = HookManager.FollowJmp(address); + this.address = address = HookManager.FollowJmp(address); if (useMinHook) this.compatHookImpl = new MinHookHook(address, detour, callingAssembly); else