Skip to content

Commit ad8ad94

Browse files
authored
Merge pull request #1147 from FFXIV-CombatReborn/doomHotfix
Hotfix for Doom dispel logic
2 parents 0f477f9 + f6c1d7d commit ad8ad94

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

RotationSolver.Basic/Helpers/StatusHelper.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,13 @@ public static bool IsDangerous(this IStatus status)
959959
return false;
960960
}
961961

962-
if (status.Param > 2)
962+
// Catch all doom statuses that use the Doom icon
963+
if (status.GameData.Value.Icon == 215503 && status.RemainingTime > 3)
964+
{
965+
return true;
966+
}
967+
968+
if (status.Param > 2)
963969
{
964970
return true;
965971
}

0 commit comments

Comments
 (0)