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

Commit

Permalink
Fixed super rare occurance of lightspeed happening twice in opener.
Browse files Browse the repository at this point in the history
Added tag to check for already having buff.
  • Loading branch information
edewen committed Sep 11, 2024
1 parent e42ba2c commit a0f9cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XIVSlothCombo/Combos/PvE/AST.cs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
if (MaleficCount == 1 && CombustCount == 0)
return OriginalHook(Combust);

if (MaleficCount == 1 && (CombustCount == 1) && ActionReady(Lightspeed) && CanDelayedWeave(actionID))
if (MaleficCount == 1 && (CombustCount == 1) && ActionReady(Lightspeed) && CanDelayedWeave(actionID) && !HasEffect(Buffs.Lightspeed))
return OriginalHook(Lightspeed);

if (MaleficCount == 3 && CanWeave(actionID))
Expand Down

0 comments on commit a0f9cda

Please sign in to comment.