Skip to content

Commit

Permalink
ehe
Browse files Browse the repository at this point in the history
  • Loading branch information
xanunderscore committed Feb 9, 2024
1 parent a3fb55e commit 1dbeb42
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 1dbeb42

Please sign in to comment.