Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
[PUSH] 3.1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Taurenkey committed Oct 15, 2023
1 parent 6fbe722 commit 962265a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
11 changes: 8 additions & 3 deletions XIVSlothCombo/Combos/JobHelpers/BLM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ private static bool HasCooldowns()

private static uint OpenerLevel => 90;

public uint PrePullStep = 1;
public uint PrePullStep = 0;

public uint OpenerStep = 1;

Expand All @@ -59,7 +59,6 @@ public OpenerState CurrentState
if (value == OpenerState.PrePull)
{
Svc.Log.Debug($"Entered PrePull Opener");
PrePullStep = 1;
}
if (value == OpenerState.InOpener) OpenerStep = 1;
if (value == OpenerState.OpenerFinished || value == OpenerState.FailedOpener)
Expand All @@ -80,7 +79,13 @@ private bool DoPrePullSteps(ref uint actionID)
{
if (!LevelChecked) return false;

if (CanOpener && PrePullStep == 0 && !CustomComboFunctions.InCombat()) { CurrentState = OpenerState.PrePull; }
if (CanOpener && PrePullStep == 0)
{
PrePullStep = 1;
}

if (PrePullStep < 1)
return false;

if (CurrentState == OpenerState.PrePull)
{
Expand Down
3 changes: 2 additions & 1 deletion XIVSlothCombo/Combos/PvE/BLM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using XIVSlothCombo.Combos.PvE.Content;
using XIVSlothCombo.CustomComboNS;
using XIVSlothCombo.CustomComboNS.Functions;
using XIVSlothCombo.Extensions;

namespace XIVSlothCombo.Combos.PvE
{
Expand Down Expand Up @@ -302,7 +303,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
return Manafont;

// Cast Fire IV after Manafont
if (IsOnCooldown(Manafont) && WasLastAction(Manafont))
if (IsOnCooldown(Manafont) && WasLastAction(Manafont) && Fire4.LevelChecked())
return Fire4;

// Blizzard III/Despair when below Fire IV + Despair MP
Expand Down
2 changes: 1 addition & 1 deletion XIVSlothCombo/XIVSlothCombo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<Authors>Team Sloth</Authors>
<Company>-</Company>
<Version>3.1.0.3</Version>
<Version>3.1.0.4</Version>
<!-- This is the version that will be used when pushing to the repo.-->
<Description>XIVCombo for lazy players</Description>
<Copyright>Copyleft attick 2021 thanks attick UwU</Copyright>
Expand Down

0 comments on commit 962265a

Please sign in to comment.