Skip to content

Commit

Permalink
Merge pull request #259 from xanunderscore/dnc4
Browse files Browse the repository at this point in the history
Fix DNC OnActionSucceeded
  • Loading branch information
awgil authored Feb 9, 2024
2 parents a3fb55e + 1dbeb42 commit 2ce5765
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion BossMod/Autorotation/DNC/DNCActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,14 @@ private void UpdatePlayerState()

protected override void OnActionSucceeded(ActorCastEvent ev)
{
if (ev.Action.ID == (uint)AID.TechnicalFinish)
if (
ev.Action.ID
is (uint)AID.TechnicalFinish
or (uint)AID.SingleTechnicalFinish
or (uint)AID.DoubleTechnicalFinish
or (uint)AID.TripleTechnicalFinish
or (uint)AID.QuadrupleTechnicalFinish
)
_predictedTechFinish = true;
}

Expand Down

0 comments on commit 2ce5765

Please sign in to comment.