Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: add a ActionFilter for List Action.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed May 4, 2023
1 parent 0403739 commit 2a5db28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RotationSolver/UI/RotationConfigWindow_List.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static ActionTexture[] AllActions
{
_allActions ??= Service.GetSheet<Action>()
.Where(a => !string.IsNullOrEmpty(a.Name) && !a.IsPvP && !a.IsPlayerAction
&& a.ClassJob.Value == null)
&& a.ClassJob.Value == null && a.Cast100ms > 0)
.Select(a => new ActionTexture(a))
.ToArray();
return _allActions;
Expand Down

0 comments on commit 2a5db28

Please sign in to comment.