Skip to content

Commit

Permalink
Fix oversight in General Check that prevented actions vs hostiles
Browse files Browse the repository at this point in the history
  • Loading branch information
LTS-FFXIV committed Jan 12, 2025
1 parent 551cf9a commit 23a8828
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 23a8828

Please sign in to comment.