From 72f675c5f748cbf2b04b43d100bed06f2f92c500 Mon Sep 17 00:00:00 2001 From: Anna Date: Thu, 27 Jun 2024 16:20:20 -0400 Subject: [PATCH] fix: use proper gpose check --- client/Messages.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/client/Messages.cs b/client/Messages.cs index c98b9e9..448f6be 100644 --- a/client/Messages.cs +++ b/client/Messages.cs @@ -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;