From 78ea6168bdc218b97e8655451d5bd4db6ff15147 Mon Sep 17 00:00:00 2001 From: attickdoor Date: Thu, 20 Feb 2020 15:14:53 -0500 Subject: [PATCH] Update job gauge offset for 5.2. --- Dalamud/Game/ClientState/ClientStateAddressResolver.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Game/ClientState/ClientStateAddressResolver.cs b/Dalamud/Game/ClientState/ClientStateAddressResolver.cs index 08f858d0c..811a6fd91 100644 --- a/Dalamud/Game/ClientState/ClientStateAddressResolver.cs +++ b/Dalamud/Game/ClientState/ClientStateAddressResolver.cs @@ -15,7 +15,7 @@ namespace Dalamud.Game.ClientState protected override void Setup64Bit(SigScanner sig) { ActorTable = sig.Module.BaseAddress + 0x1BFFD90; LocalContentId = sig.Module.BaseAddress + 0x1C2E000; - JobGaugeData = sig.Module.BaseAddress + 0x1BFB110; + JobGaugeData = sig.Module.BaseAddress + 0x1C5E4A0; } } }