Skip to content

Commit

Permalink
Merge pull request #564 from FFXIV-CombatReborn/learninglession
Browse files Browse the repository at this point in the history
Fix oversight in General Check that prevented actions vs hostiles
  • Loading branch information
LTS-FFXIV authored Jan 12, 2025
2 parents 551cf9a + 23a8828 commit 550c728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RotationSolver.Basic/Actions/ActionTargetInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public bool GeneralCheck(IBattleChara gameObject, bool skipStatusProvideCheck)
{
if (!gameObject.IsTargetable) return false;

if (Service.Config.RaiseType == RaiseType.PartyOnly && !gameObject.IsParty())
if (Service.Config.RaiseType == RaiseType.PartyOnly && gameObject.IsAllianceMember() && !gameObject.IsParty())
{
return false;
}
Expand Down

0 comments on commit 550c728

Please sign in to comment.