Skip to content

Commit 4e420bc

Browse files
authored
Merge pull request #28 from FFXIV-CombatReborn/darkknight-delirum-fix
fix Delirium status ID, should now use Bloodspiller/Quietus correctly
2 parents aa84622 + b0129c0 commit 4e420bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RotationSolver.Basic/Rotations/Basic/DarkKnightRotation.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ protected static bool ShadowTimeEndAfterGCD(uint gctCount = 0, float offset = 0)
6868

6969
static partial void ModifyBloodspillerPvE(ref ActionSetting setting)
7070
{
71-
setting.ActionCheck = () => Blood >= 50 || !Player.WillStatusEnd(0, true, StatusID.Delirium);
71+
setting.ActionCheck = () => Blood >= 50 || !Player.WillStatusEnd(0, true, StatusID.Delirium_1972);
7272
}
7373

7474
static partial void ModifyUnmendPvE(ref ActionSetting setting)
@@ -83,7 +83,7 @@ static partial void ModifyLivingShadowPvE(ref ActionSetting setting)
8383

8484
static partial void ModifyQuietusPvE(ref ActionSetting setting)
8585
{
86-
setting.ActionCheck = () => Blood >= 50 || !Player.WillStatusEnd(0, true, StatusID.Delirium);
86+
setting.ActionCheck = () => Blood >= 50 || !Player.WillStatusEnd(0, true, StatusID.Delirium_1972);
8787
}
8888

8989
static partial void ModifyStalwartSoulPvE(ref ActionSetting setting)

0 commit comments

Comments
 (0)