Skip to content

Commit

Permalink
Merge pull request #278 from FFXIV-CombatReborn/DRK-Bloodfix
Browse files Browse the repository at this point in the history
Bloodfix for Bloodweapon and Stalwart Soul
  • Loading branch information
LTS-FFXIV authored Jul 27, 2024
2 parents 7b1059f + 9dca883 commit ac706e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RotationSolver.Basic/Rotations/Basic/DarkKnightRotation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static partial void ModifyFloodOfDarknessPvE(ref ActionSetting setting)

static partial void ModifyBloodWeaponPvE(ref ActionSetting setting)
{
setting.ActionCheck = () => Blood >= 70;
setting.ActionCheck = () => Blood <= 70;
setting.StatusProvide = [StatusID.BloodWeapon];
setting.CreateConfig = () => new()
{
Expand All @@ -132,7 +132,7 @@ static partial void ModifyShadowWallPvE(ref ActionSetting setting)

static partial void ModifyStalwartSoulPvE(ref ActionSetting setting)
{
setting.ActionCheck = () => Blood >= 80;
setting.ActionCheck = () => Blood <= 80;
setting.ComboIds = [ActionID.UnleashPvE];
setting.CreateConfig = () => new()
{
Expand Down

0 comments on commit ac706e5

Please sign in to comment.