Fix Enochian, prep for 5.1 changes.

This commit is contained in:
attick 2019-10-25 20:35:53 -04:00
parent 09c5f0841d
commit 58b5401e90
5 changed files with 37 additions and 26 deletions

View file

@ -12,6 +12,10 @@ namespace Dalamud.Game.ClientState.Structs.JobGauge {
[FieldOffset(0)] public byte GLTimer;
[FieldOffset(2)] public byte NumGLStacks;
[FieldOffset(3)] public byte NumChakra;
[FieldOffset(4)] public bool IsGLTimerFrozen;
[FieldOffset(4)] private byte GLTimerFreezeState;
public bool IsGLTimerFroze() {
return GLTimerFreezeState > 0;
}
}
}