Skip to content

Commit

Permalink
Merge pull request #590 from xanunderscore/uishowtarget
Browse files Browse the repository at this point in the history
Show action target in autorot window
  • Loading branch information
xanunderscore authored Feb 7, 2025
2 parents 421444d + 5d7bf12 commit b7a87a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BossMod/Autorotation/UIRotationWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public override void Draw()
ImGui.TextUnformatted($"GCD={_mgr.WorldState.Client.Cooldowns[ActionDefinitions.GCDGroup].Remaining:f3}, AnimLock={_amex.EffectiveAnimationLock:f3}+{_amex.AnimationLockDelayEstimate:f3}, Combo={_amex.ComboTimeLeft:f3}, RBIn={_mgr.Bossmods.RaidCooldowns.NextDamageBuffIn():f3}");
foreach (var a in _mgr.Hints.ActionsToExecute.Entries)
{
ImGui.TextUnformatted($"> {a.Action} ({a.Priority:f2})");
ImGui.TextUnformatted($"> {a.Action} ({a.Priority:f2}) @ ({a.Target?.Name ?? "<none>"})");
}
}

Expand Down

0 comments on commit b7a87a5

Please sign in to comment.