Skip to content

Commit

Permalink
Fixed stance strategy.
Browse files Browse the repository at this point in the history
  • Loading branch information
awgil committed Aug 15, 2024
1 parent 2d0aaa9 commit 36454d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BossMod/Autorotation/Utility/RoleTankUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ protected void ExecuteShared(StrategyValues strategy, ActionID lb3, ActionID sta
var stanceOption = stance.As<StanceOption>();
if (stanceOption != StanceOption.None)
{
var haveStance = Player.FindStatus(stanceOption) != null;
var haveStance = Player.FindStatus(stanceStatus) != null;
var wantStance = stanceOption == StanceOption.Apply;
if (haveStance != wantStance)
Hints.ActionsToExecute.Push(wantStance ? stanceApply : stanceRemove, Player, stance.Priority(), stance.Value.ExpireIn);
Expand Down

0 comments on commit 36454d6

Please sign in to comment.