fix: use proper gpose check

This commit is contained in:
Anna 2024-06-27 16:20:20 -04:00
parent 5981c19cbd
commit 72f675c5f7
Signed by: anna
GPG Key ID: D0943384CD9F87D1

View File

@ -52,12 +52,7 @@ internal class Messages : IDisposable {
}
}
private bool GposeActive {
get {
var condition = this.Plugin.Condition;
return condition[ConditionFlag.WatchingCutscene];
}
}
private bool GposeActive => this.Plugin.ClientState.IsGPosing;
private bool _inCutscene;
private bool _inGpose;