Skip to content

Commit

Permalink
Fix PCT bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Nik-Potokar committed Aug 22, 2024
1 parent c573aff commit 7a88598
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions XIVSlothCombo/Combos/JobHelpers/PCT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private bool DoPrePullSteps(ref uint actionID)
CurrentState = OpenerState.FailedOpener;

if (!HasMotifs())
CurrentState = OpenerState.FailedOpener;
return false;

return true;
}
Expand Down Expand Up @@ -364,7 +364,7 @@ private bool DoPrePullSteps(ref uint actionID)
CurrentState = OpenerState.FailedOpener;

if (!HasMotifs())
CurrentState = OpenerState.FailedOpener;
return false;

return true;
}
Expand Down Expand Up @@ -612,7 +612,7 @@ private bool DoPrePullSteps(ref uint actionID)
else if (PrePullStep == 1) actionID = FireInRed;

if (!HasMotifs())
CurrentState = OpenerState.FailedOpener;
return false;

return true;
}
Expand Down Expand Up @@ -880,7 +880,7 @@ private bool DoPrePullSteps(ref uint actionID)
else if (PrePullStep == 1) actionID = FireInRed;

if (!HasMotifs())
CurrentState = OpenerState.FailedOpener;
return false;

return true;
}
Expand Down Expand Up @@ -1154,7 +1154,7 @@ private bool DoPrePullSteps(ref uint actionID)
else if (PrePullStep == 1) actionID = FireInRed;

if (!HasMotifs())
CurrentState = OpenerState.FailedOpener;
return false;

return true;
}
Expand Down Expand Up @@ -1267,7 +1267,7 @@ private bool DoOpener(ref uint actionID)
return false;
}

if (OpenerStep > 14) // Assuming 15 is the last step
if (OpenerStep > 14)
{
CurrentState = OpenerState.OpenerFinished;
Svc.Log.Information("Opener completed successfully.");
Expand Down

0 comments on commit 7a88598

Please sign in to comment.