From 71a27006e2087e71c874e44679abc3abeeaa6522 Mon Sep 17 00:00:00 2001 From: Asgard Date: Wed, 29 Jan 2025 18:19:30 -0700 Subject: [PATCH] Typo --- Brio/Game/Actor/ActorVFXService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Brio/Game/Actor/ActorVFXService.cs b/Brio/Game/Actor/ActorVFXService.cs index 6e59d5ff..15d5631e 100644 --- a/Brio/Game/Actor/ActorVFXService.cs +++ b/Brio/Game/Actor/ActorVFXService.cs @@ -19,8 +19,8 @@ public ActorVFXService(ISigScanner scanner) var vfxCreateAddress = scanner.ScanText("E8 ?? ?? ?? ?? 48 8B D8 48 85 C0 74 ?? 0F B6 57 ?? 48 8B C8 C0 EA"); _createActorVfx = (delegate* unmanaged)vfxCreateAddress; - var vfxDetourAddress = scanner.ScanText("48 89 5C 24 ?? 57 48 83 EC ?? 48 8D 05 ?? ?? ?? ?? 48 8B D9 48 89 01 8B FA 48 8D 05 ?? ?? ?? ?? 48 89 81 ?? ?? ?? ?? 48 8B 89 ?? ?? ?? ?? 48 85 C9 74 ?? 48 8B 01 48 8B D3"); - _vfxDtor = (delegate* unmanaged)vfxDetourAddress; + var vfxDtorAddress = scanner.ScanText("48 89 5C 24 ?? 57 48 83 EC ?? 48 8D 05 ?? ?? ?? ?? 48 8B D9 48 89 01 8B FA 48 8D 05 ?? ?? ?? ?? 48 89 81 ?? ?? ?? ?? 48 8B 89 ?? ?? ?? ?? 48 85 C9 74 ?? 48 8B 01 48 8B D3"); + _vfxDtor = (delegate* unmanaged)vfxDtorAddress; } public nint CreateActorVFX(string vfxName, IGameObject actor, IGameObject? target = null)