mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
fix: possible null ref in UiBuilder.CutsceneActive
This commit is contained in:
parent
afe56e412f
commit
a52f54774e
1 changed files with 2 additions and 2 deletions
|
|
@ -65,8 +65,8 @@ namespace Dalamud.Interface
|
|||
public bool DisableGposeUiHide { get; set; } = false;
|
||||
|
||||
private bool CutsceneActive => this.dalamud.ClientState != null &&
|
||||
this.dalamud.ClientState.Condition[ConditionFlag.OccupiedInCutSceneEvent] ||
|
||||
this.dalamud.ClientState.Condition[ConditionFlag.WatchingCutscene78];
|
||||
(this.dalamud.ClientState.Condition[ConditionFlag.OccupiedInCutSceneEvent] ||
|
||||
this.dalamud.ClientState.Condition[ConditionFlag.WatchingCutscene78]);
|
||||
|
||||
private bool GposeActive => this.dalamud.ClientState != null &&
|
||||
this.dalamud.ClientState.Condition[ConditionFlag.WatchingCutscene];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue