Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: add downloadList to test.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Apr 10, 2023
1 parent 2c4e048 commit ce4adf3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Resources/downloadList.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[
"Some url"
"https://github.com/ArchiDog1998/FFXIVRotations/releases/latest/download/ExtraRotations.dll",
"Some url"
]
1 change: 1 addition & 0 deletions RotationSolver.Basic/Rotations/CustomRotation_Ability.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ private bool Ability(byte abilitiesRemaining, IAction nextGCD, out IAction act,
{
act = DataCenter.CommandNextAction;
if (act is IBaseAction a && a != null && !a.IsRealGCD && a.CanUse(out _, CanUseOption.MustUse | CanUseOption.SkipDisable | CanUseOption.EmptyOrSkipCombo)) return true;
if(act is IBaseItem i && i.CanUse(out _)) return true;

if (!Service.Config.GetValue(SettingsCommand.UseAbility)
|| Player.TotalCastTime - Player.CurrentCastTime > Service.Config.AbilitiesInterval)
Expand Down

0 comments on commit ce4adf3

Please sign in to comment.