Skip to content

Commit

Permalink
Merge pull request #450 from FFXIV-CombatReborn/mergeWIP
Browse files Browse the repository at this point in the history
fix bug for actions to execute
  • Loading branch information
CarnifexOptimus authored Nov 21, 2024
2 parents 5b37127 + 50501c9 commit 2f46a65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BossMod/BossModule/BossModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public void CalculateAIHints(int slot, Actor actor, PartyRolesConfig.Assignment
for (var i = 0; i < componentCount; ++i)
_components[i].AddAIHints(slot, actor, assignment, hints);
CalculateModuleAIHints(slot, actor, assignment, hints);
if (!WindowConfig.AllowAutomaticActions || AI.AIManager.Instance?.Beh != null)
if (!WindowConfig.AllowAutomaticActions && AI.AIManager.Instance?.Beh == null)
hints.ActionsToExecute.Clear();
}

Expand Down

0 comments on commit 2f46a65

Please sign in to comment.