Skip to content

Commit

Permalink
Fix canUse condition
Browse files Browse the repository at this point in the history
  • Loading branch information
HT32 committed Oct 5, 2024
1 parent c24d39d commit a99a1d2
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ protected override bool IsTrueInside(ICustomRotation rotation)
return _action.Cooldown.MaxCharges == Param1;
}
break;
case ActionConditionType.CanUse:
return _action.CanUse(out var act);
break;

}
return false;
}
Expand Down

0 comments on commit a99a1d2

Please sign in to comment.