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

Commit

Permalink
fix: fixed the obsolete.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Apr 22, 2023
1 parent a7d4446 commit 4665771
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>net7.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Authors>ArchiTed</Authors>
<Version>2.3.5.1</Version>
<Version>2.3.5.2</Version>
<PlatformTarget>x64</PlatformTarget>
<Platforms>AnyCPU</Platforms>

Expand Down
2 changes: 0 additions & 2 deletions RotationSolver.Basic/Rotations/Basic/MNK_Base.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,13 @@ public abstract class MNK_Base : CustomRotation

public static IBaseAction FlintStrike { get; } = new BaseAction(ActionID.FlintStrike);

[Obsolete("Please use FlintStrike instead")]
public static IBaseAction RisingPhoenix { get; } = new BaseAction(ActionID.RisingPhoenix);

public static IBaseAction CelestialRevolution { get; } = new BaseAction(ActionID.CelestialRevolution);


public static IBaseAction TornadoKick { get; } = new BaseAction(ActionID.TornadoKick);

[Obsolete("Please use TornadoKick instead")]
public static IBaseAction PhantomRush { get; } = new BaseAction(ActionID.PhantomRush);

#endregion
Expand Down
4 changes: 2 additions & 2 deletions RotationSolver.Basic/Rotations/Basic/NIN_Base.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ internal NinAction(ActionID actionID, params IBaseAction[] ninjutsu)

public static INinAction Huton { get; } = new NinAction(ActionID.Huton, Jin, Chi, Ten)
{
ActionCheck = b => JobGauge.HutonTimer == 0,
ActionCheck = b => HutonEndAfterGCD(),
};

public static INinAction Doton { get; } = new NinAction(ActionID.Doton, Jin, Ten, Chi)
Expand Down Expand Up @@ -223,6 +223,6 @@ protected sealed override bool DefenseAreaAbility(out IAction act)
protected override bool DefenseSingleAbility(out IAction act)
{
if (ShadeShift.CanUse(out act)) return true;
return DefenseSingleAbility(out act);
return base.DefenseSingleAbility(out act);
}
}

0 comments on commit 4665771

Please sign in to comment.