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

Commit

Permalink
fix: whm Aquaveil as defense.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Jul 14, 2023
1 parent f2e16c4 commit f0086b5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Resources/AnimationLockTime.json
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@
"16552": 0.6,
"16553": 0.6,
"16554": 0.6,
"16555": 0.1,
"16555": 0.6,
"16556": 0.6,
"16557": 0.6,
"16559": 0.6,
Expand Down
7 changes: 5 additions & 2 deletions RotationSolver.Basic/Rotations/Basic/WHM_Base.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ protected static bool LilyAfterGCD(uint gcdCount = 0, float offset = 0)
/// <summary>
///
/// </summary>
public static IBaseAction DivineBenison { get; } = new BaseAction(ActionID.DivineBenison, ActionOption.Heal)
public static IBaseAction DivineBenison { get; } = new BaseAction(ActionID.DivineBenison, ActionOption.Defense)
{
StatusProvide = new StatusID[] { StatusID.DivineBenison },
ChoiceTarget = TargetFilter.FindAttackedTarget,
Expand All @@ -148,7 +148,10 @@ protected static bool LilyAfterGCD(uint gcdCount = 0, float offset = 0)
/// <summary>
///
/// </summary>
public static IBaseAction Aquaveil { get; } = new BaseAction(ActionID.Aquaveil, ActionOption.Heal);
public static IBaseAction Aquaveil { get; } = new BaseAction(ActionID.Aquaveil, ActionOption.Defense)
{
ChoiceTarget = TargetFilter.FindAttackedTarget,
};

/// <summary>
///
Expand Down
2 changes: 0 additions & 2 deletions RotationSolver/RotationSolverPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
using RotationSolver.Localization;
using RotationSolver.UI;
using RotationSolver.Updaters;
using System.IO.Compression;
using System.Net;
using Module = ECommons.Module;

namespace RotationSolver;
Expand Down

0 comments on commit f0086b5

Please sign in to comment.