fix: update offset for 5.3

This commit is contained in:
Anna 2020-08-13 07:00:09 -04:00
parent 521a41151e
commit dd8c3e180b

View File

@ -27,7 +27,7 @@ namespace HudSwap {
private ClassJob job; private ClassJob job;
internal static byte GetStatus(DalamudPluginInterface pi, Actor actor) { 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); return Marshal.ReadByte(statusPtr);
} }