Skip to content

Commit

Permalink
Comment out the check for Track.Mit instead
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeMonkey626 committed Aug 4, 2024
1 parent 62117fd commit 1f98cc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BossMod/Autorotation/xan/AI/Tank.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private void ExecutePLD(StrategyValues strategy, Actor? primaryTarget)

var attackers = EnemiesAutoingMe.Count();

if (strategy.Enabled(Track.Mit) && attackers > 0)
if (/*strategy.Enabled(Track.Mit) && */attackers > 0)
{
if (gauge.OathGauge >= 50 && HPRatio < 0.8)
Hints.ActionsToExecute.Push(ActionID.MakeSpell(BossMod.PLD.AID.Sheltron), Player, ActionQueue.Priority.Minimal);
Expand All @@ -97,7 +97,7 @@ private void ExecuteGNB(StrategyValues strategy, Actor? primaryTarget)
{
var attackers = EnemiesAutoingMe.Count();

if (strategy.Enabled(Track.Mit) && attackers > 0)
if (/*strategy.Enabled(Track.Mit) && */attackers > 0)
{
if (HPRatio < 0.8 && Cooldown(BossMod.GNB.AID.HeartOfCorundum) == 0)
Hints.ActionsToExecute.Push(ActionID.MakeSpell(BossMod.GNB.AID.HeartOfCorundum), Player, ActionQueue.Priority.Minimal);
Expand Down

0 comments on commit 1f98cc1

Please sign in to comment.