Skip to content

Commit

Permalink
[PUSH] 1.5.0.4 - PLD Blade of Honor fix
Browse files Browse the repository at this point in the history
this time I did version bump
  • Loading branch information
MKhayle committed Jul 2, 2024
1 parent d11eabc commit 87e8016
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions XIVComboExpanded/Combos/PLD.cs
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,11 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
if (original != PLD.Confiteor)
return original;

if (HasEffect(PLD.Buffs.ConfiteorReady) || HasEffect(PLD.Buffs.BladeOfHonorReady))
return PLD.Confiteor;
if (HasEffect(PLD.Buffs.BladeOfHonorReady))
return OriginalHook(PLD.Imperator);

if (HasEffect(PLD.Buffs.ConfiteorReady))
return OriginalHook(PLD.Confiteor);
}

if (level >= PLD.Levels.Requiescat && HasEffect(PLD.Buffs.Requiescat))
Expand Down
2 changes: 1 addition & 1 deletion XIVComboExpanded/XIVComboExpanded.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Authors>attick, daemitus</Authors>
<Company>-</Company>
<Version>1.5.0.3</Version>
<Version>1.5.0.4</Version>
<Description>This plugin condenses combos and mutually exclusive abilities onto a single button.</Description>
<Copyright>Copyleft attick 2020 baybeeee</Copyright>
<PackageProjectUrl>https://github.com/daemitus/XIVComboPlugin</PackageProjectUrl>
Expand Down

0 comments on commit 87e8016

Please sign in to comment.