Skip to content

Commit

Permalink
Fix warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
awgil committed Sep 1, 2024
1 parent 1369c10 commit 588f875
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion BossMod/Config/ConfigUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public ConfigUI(ConfigRoot config, WorldState ws, RotationDatabase? rotationDB)
_ws = ws;
_mv = new(rotationDB?.Plans, ws);
_presets = rotationDB != null ? new(rotationDB.Presets) : null;
_tabs.Add("About", () => ConfigAboutTab.Draw());
_tabs.Add("About", ConfigAboutTab.Draw);
_tabs.Add("Settings", () => DrawNodes(_roots));
_tabs.Add("Supported Duties", () => _mv.Draw(_tree, _ws));
_tabs.Add("Autorotation Presets", () => _presets?.Draw());
Expand Down
1 change: 1 addition & 0 deletions TODO
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ immediate plans
- m2s ai/plan
- cdplanner should use real cds
- auto avoid gaze
- restore view-timeline to module ui

general:
- horizontal timeline / cooldown planner
Expand Down

0 comments on commit 588f875

Please sign in to comment.