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

Commit

Permalink
Fix AST AoE hot check
Browse files Browse the repository at this point in the history
  • Loading branch information
Taurenkey committed Aug 24, 2024
1 parent 3ef438c commit 5a3de88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions XIVSlothCombo/Combos/PvE/AST.cs
Original file line number Diff line number Diff line change
Expand Up @@ -514,8 +514,8 @@ Gauge.DrawnCrownCard is CardType.LADY
}

// Only check for our own HoTs
var aspectedHeliosHoT = FindEffect(Buffs.AspectedBenefic, LocalPlayer, LocalPlayer?.GameObjectId);
var heliosConjunctionHoT = FindEffect(Buffs.AspectedBenefic, LocalPlayer, LocalPlayer?.GameObjectId);
var aspectedHeliosHoT = FindEffect(Buffs.AspectedHelios, LocalPlayer, LocalPlayer?.GameObjectId);
var heliosConjunctionHoT = FindEffect(Buffs.HeliosConjunction, LocalPlayer, LocalPlayer?.GameObjectId);

if ((IsEnabled(CustomComboPreset.AST_AoE_SimpleHeals_Aspected) && NonaspectedMode) || // Helios mode: option must be on
!NonaspectedMode) // Aspected mode: option is not required
Expand Down

0 comments on commit 5a3de88

Please sign in to comment.