Skip to content

Commit

Permalink
Merge pull request #485 from xanunderscore/patch-9
Browse files Browse the repository at this point in the history
fix tankbuster detection in AIBase
  • Loading branch information
awgil authored Sep 14, 2024
2 parents a89e4a1 + 0c6f7d6 commit cd239bc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions BossMod/Autorotation/xan/AI/AIBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ internal bool IsCastReactable(Actor act)
foreach (var d in Hints.PredictedDamage)
{
var targets = World.Party.WithSlot(partyOnly: true).IncludedInMask(d.players).GetEnumerator();
targets.MoveNext();
var target1 = targets.Current;
if (targets.MoveNext())
continue;
Expand Down

0 comments on commit cd239bc

Please sign in to comment.