@@ -189,7 +189,7 @@ static void DrawConfigsOfBaseAction(IBaseAction a)
189189 }
190190 ImGuiHelper . HoveredTooltip ( ConfigUnitType . Seconds . Local ( ) ) ;
191191
192- if ( a . Setting . StatusProvide != null || a . Setting . TargetStatusProvide != null )
192+ if ( a . Info . StatusProvide . Length > 0 || a . Info . TargetStatusProvide . Length > 0 )
193193 {
194194 var shouldStatus = config . ShouldCheckStatus ;
195195 if ( ImGui . Checkbox ( $ "{ UiString . ConfigWindow_Actions_CheckStatus . Local ( ) } ##{ a } ", ref shouldStatus ) )
@@ -256,14 +256,19 @@ static void DrawActionDebug()
256256 ImGui . Text ( "AttackType: " + action . Info . AttackType . ToString ( ) ) ;
257257 ImGui . Text ( "Aspect: " + action . Info . Aspect . ToString ( ) ) ;
258258 ImGui . Text ( "Has One:" + action . CD . HasOneCharge . ToString ( ) ) ;
259- ImGui . Text ( "Recast One: " + action . CD . RecastTimeOneChargeRaw . ToString ( ) ) ;
259+ ImGui . Text ( "Recast One: " + action . CD . RecastTime . ToString ( ) ) ;
260260 ImGui . Text ( "Recast One Remain: " + action . CD . RecastTimeRemainOneCharge . ToString ( ) ) ;
261261 ImGui . Text ( "Recast Elapsed: " + action . CD . RecastTimeElapsedRaw . ToString ( ) ) ;
262262 ImGui . Text ( $ "Charges: { action . CD . CurrentCharges } / { action . CD . MaxCharges } ") ;
263263
264+ ImGui . Text ( "-----" ) ;
265+
264266 ImGui . Text ( "Status Need: " + string . Join ( ", " , action . Info . TargetStatusNeed ) ) ;
265267 ImGui . Text ( "Status Provide: " + string . Join ( ", " , action . Info . StatusProvide ) ) ;
266268 ImGui . Text ( "Status Target Provide: " + string . Join ( ", " , action . Info . TargetStatusProvide ) ) ;
269+ ImGui . Text ( "Combo Actions: " + string . Join ( ", " , action . Info . ComboActions ) ) ;
270+
271+ ImGui . Text ( "-----" ) ;
267272
268273 ImGui . Text ( $ "Can Use: { action . CanUse ( out _ , skipClippingCheck : true ) } ") ;
269274 ImGui . Text ( $ "Why Can't: { action . WhyCant . Local ( ) } ") ;
0 commit comments