From 0812c97b7976ec1806afe31e06543768b4437ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=8B=E6=B0=B4?= <1123993881@qq.com> Date: Mon, 23 Jan 2023 16:23:38 +0800 Subject: [PATCH] fix: add debug information. --- RotationSolver/Windows/RotationConfigWindow_Debug.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RotationSolver/Windows/RotationConfigWindow_Debug.cs b/RotationSolver/Windows/RotationConfigWindow_Debug.cs index 6dc32631f..9c6ff8cf5 100644 --- a/RotationSolver/Windows/RotationConfigWindow_Debug.cs +++ b/RotationSolver/Windows/RotationConfigWindow_Debug.cs @@ -3,6 +3,7 @@ using ImGuiNET; using Lumina.Excel.GeneratedSheets; using RotationSolver.Actions.BaseAction; +using RotationSolver.Commands; using RotationSolver.Data; using RotationSolver.Helpers; using RotationSolver.SigReplacers; @@ -62,6 +63,8 @@ private unsafe void DrawDebugTab() if (ImGui.CollapsingHeader("Next Action")) { + ImGui.Text(RSCommands.SpecialType.ToString()); + ActionUpdater.NextAction?.Display(false); ImGui.Text("Ability Remain: " + ActionUpdater.AbilityRemain.ToString()); ImGui.Text("Ability Count: " + ActionUpdater.AbilityRemainCount.ToString());