From 6ca54c6a156a2978db67279d234fe46d5dec0c7f Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Sat, 7 Oct 2023 02:41:11 +0200 Subject: [PATCH] Fix minion placement. --- Glamourer/Interop/ScalingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Glamourer/Interop/ScalingService.cs b/Glamourer/Interop/ScalingService.cs index f714a9e..ea71cad 100644 --- a/Glamourer/Interop/ScalingService.cs +++ b/Glamourer/Interop/ScalingService.cs @@ -76,7 +76,7 @@ public unsafe class ScalingService : IDisposable private void PlaceMinionDetour(Companion* companion) { - var owner = (Actor)((nint*)companion)[0x374]; + var owner = (Actor)((nint*)companion)[0x386]; if (!owner.IsCharacter) { _placeMinionHook.Original(companion);