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

Commit

Permalink
fix: no LB in cd window.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Nov 12, 2023
1 parent 9c7c3ee commit 9512b1b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions Resources/AnimationLockTime.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@
"3639": 0.6,
"3640": 0.6,
"3643": 0.6,
"4244": 3.6999998,
"4262": 0.6,
"4401": 0.6,
"4402": 0.6,
Expand Down
4 changes: 2 additions & 2 deletions Resources/RotationSolverRecord.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ClickingCount": 58414,
"SayingHelloCount": 3,
"ClickingCount": 58423,
"SayingHelloCount": 5,
"SaidUsers": []
}
3 changes: 2 additions & 1 deletion RotationSolver/UI/CooldownWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public override void Draw()

foreach (var pair in RotationUpdater.AllGroupedActions)
{
var showItems = pair.OrderBy(a => a.SortKey).Where(a => a.IsInCooldown);
var showItems = pair.OrderBy(a => a.SortKey).Where(a => a.IsInCooldown
&& (a is not IBaseAction b || !b.IsLimitBreak));
if (!Service.Config.GetValue(PluginConfigBool.ShowGCDCooldown)) showItems = showItems.Where(i => !(i is IBaseAction a && a.IsGeneralGCD));

if (!showItems.Any()) continue;
Expand Down

0 comments on commit 9512b1b

Please sign in to comment.