We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376611e commit 2ae4fe5Copy full SHA for 2ae4fe5
AutoDuty/Helpers/PartyHelper.cs
@@ -72,7 +72,7 @@ public static unsafe bool PartyInCombat()
72
List<IBattleChara> members = GetPartyMembers();
73
if (!partyInCombat && members.Any(x => x.Struct()->InCombat))
74
partyInCombat = true;
75
- else if (!members.Any(x => x.Struct()->InCombat))
+ else if (!members.Any(x => !x.Struct()->IsDead() && x.Struct()->InCombat))
76
partyInCombat = false;
77
78
Svc.Log.Debug("InCombatCheck: " + partyInCombat);
0 commit comments