fix: update offset for 5.3

This commit is contained in:
Anna 2020-08-13 07:00:09 -04:00
parent 03b0e232e3
commit 52f5542563
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0

View File

@ -27,7 +27,7 @@ namespace HudSwap {
private ClassJob job;
internal static byte GetStatus(DalamudPluginInterface pi, Actor actor) {
IntPtr statusPtr = pi.TargetModuleScanner.ResolveRelativeAddress(actor.Address, 0x1901);
IntPtr statusPtr = pi.TargetModuleScanner.ResolveRelativeAddress(actor.Address, 0x1906);
return Marshal.ReadByte(statusPtr);
}