diff --git a/Dalamud/Interface/Internal/Windows/DataWindow.cs b/Dalamud/Interface/Internal/Windows/DataWindow.cs index 676c2e9c1..d438c6450 100644 --- a/Dalamud/Interface/Internal/Windows/DataWindow.cs +++ b/Dalamud/Interface/Internal/Windows/DataWindow.cs @@ -937,7 +937,20 @@ namespace Dalamud.Interface.Internal.Windows if (targetMgr.Target != null) { this.PrintGameObject(targetMgr.Target, "CurrentTarget"); + + ImGui.Text("Target"); Util.ShowObject(targetMgr.Target); + + var tot = targetMgr.Target.TargetObject; + if (tot != null) + { + ImGuiHelpers.ScaledDummy(10); + + ImGui.Text("ToT"); + Util.ShowObject(tot); + } + + ImGuiHelpers.ScaledDummy(10); } if (targetMgr.FocusTarget != null)