Skip to content

Commit

Permalink
reduce frequency of warn-stranded check
Browse files Browse the repository at this point in the history
  • Loading branch information
myk002 committed Nov 27, 2023
1 parent 29fec90 commit dbe7948
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Template for new versions:
## Fixes

## Misc Improvements
- `gui/control-panel`: reduce frequency for `warn-stranded` check to once every 2 days

## Removed

Expand Down
2 changes: 1 addition & 1 deletion gui/control-panel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ local REPEATS = {
command={'--time', '10', '--timeUnits', 'days', '--command', '[', 'warn-starving', ']'}},
['warn-stranded']={
desc='Show a warning dialog when units are stranded from all others.',
command={'--time', '0.25', '--timeUnits', 'days', '--command', '[', 'warn-stranded', ']'}},
command={'--time', '2', '--timeUnits', 'days', '--command', '[', 'warn-stranded', ']'}},
}
local REPEATS_LIST = {}
for k in pairs(REPEATS) do
Expand Down

0 comments on commit dbe7948

Please sign in to comment.