Skip to content

Commit

Permalink
forgot these
Browse files Browse the repository at this point in the history
  • Loading branch information
Akechi-kun committed Feb 9, 2025
1 parent e08c1ba commit 3b35c52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BossMod/Autorotation/Standard/akechi/Tank/AkechiDRK.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static RotationModuleDefinition Definition()
BitMask.Build((int)Class.DRK), //Job
100); //Level supported

res.DefineAOE().AddAssociatedActions(AID.HardSlash, AID.SyphonStrike, AID.Souleater, AID.Unleash, AID.StalwartSoul); ;
res.DefineAOE().AddAssociatedActions(AID.HardSlash, AID.SyphonStrike, AID.Souleater, AID.Unleash, AID.StalwartSoul);
res.DefineHold();
res.Define(Track.Blood).As<BloodStrategy>("Blood", "Blood", uiPriority: 200)
.AddOption(BloodStrategy.Automatic, "Automatic", "Automatically use Blood-related abilities optimally")
Expand Down
4 changes: 3 additions & 1 deletion BossMod/Autorotation/Standard/akechi/Tank/AkechiWAR.cs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,9 @@ public bool IsRiskingGauge()
if (ComboLastMove is AID.HeavySwing)
return true;
}

if (NascentChaos.IsActive && //if NC is active
InnerRelease.CD > 5) //and IR is not imminent
return true;
return false;
}
#endregion
Expand Down

0 comments on commit 3b35c52

Please sign in to comment.