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

Commit

Permalink
fix: PvP sprint spam.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Nov 5, 2023
1 parent 42539eb commit 589ee68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Resources/RotationSolverRecord.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"ClickingCount": 56801,
"ClickingCount": 56810,
"SaidUsers": []
}
2 changes: 1 addition & 1 deletion RotationSolver.Basic/Rotations/CustomRotation_Ability.cs
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ protected virtual bool DefenseAreaAbility(out IAction act)
[RotationDesc(ActionID.Sprint)]
protected virtual bool SpeedAbility(out IAction act)
{
if (PvP_Sprint.CanUse(out act, CanUseOption.MustUse)) return true;
if (PvP_Sprint.CanUse(out act)) return true;

if (Peloton.CanUse(out act, CanUseOption.MustUse)) return true;
if (Sprint.CanUse(out act, CanUseOption.MustUse)) return true;
Expand Down

0 comments on commit 589ee68

Please sign in to comment.