From 60302c37cd866fbe252b371d84082f74b75487b6 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Fri, 26 Jul 2024 15:06:51 +0200 Subject: [PATCH] Fix minion placement. --- Glamourer/Interop/ScalingService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Glamourer/Interop/ScalingService.cs b/Glamourer/Interop/ScalingService.cs index f7b8f08..16b9a37 100644 --- a/Glamourer/Interop/ScalingService.cs +++ b/Glamourer/Interop/ScalingService.cs @@ -74,7 +74,8 @@ public unsafe class ScalingService : IDisposable private void PlaceMinionDetour(Companion* companion) { - var owner = (Actor)((nint*)companion)[0x386]; + // TODO Update CS + var owner = (Actor)((nint*)companion)[0x45C]; if (!owner.IsCharacter) { _placeMinionHook.Original(companion);